You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
839 B
Plaintext
36 lines
839 B
Plaintext
15 years ago
|
/* Supports as many analog inputs and analog PWM outputs as possible.
|
||
|
*
|
||
|
* This example code is in the public domain.
|
||
|
*/
|
||
|
#include <Firmata.h>
|
||
|
|
||
14 years ago
|
byte analogPin = 0;
|
||
15 years ago
|
|
||
|
void analogWriteCallback(byte pin, int value)
|
||
|
{
|
||
14 years ago
|
if (IS_PIN_PWM(pin)) {
|
||
|
pinMode(PIN_TO_DIGITAL(pin), OUTPUT);
|
||
|
analogWrite(PIN_TO_PWM(pin), value);
|
||
|
}
|
||
15 years ago
|
}
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
Firmata.setFirmwareVersion(0, 1);
|
||
|
Firmata.attach(ANALOG_MESSAGE, analogWriteCallback);
|
||
|
Firmata.begin(57600);
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
while(Firmata.available()) {
|
||
|
Firmata.processInput();
|
||
|
}
|
||
14 years ago
|
// do one analogRead per loop, so if PC is sending a lot of
|
||
|
// analog write messages, we will only delay 1 analogRead
|
||
|
Firmata.sendAnalog(analogPin, analogRead(analogPin));
|
||
|
analogPin = analogPin + 1;
|
||
|
if (analogPin >= TOTAL_ANALOG_PINS) analogPin = 0;
|
||
15 years ago
|
}
|
||
|
|