diff options
author | Hans-Christoph Steiner <hans@at.or.at> | 2008-09-12 16:35:07 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <hans@at.or.at> | 2008-09-12 16:35:07 +0000 |
commit | 7b658714de746b9c3da1e05157413942d349ff1b (patch) | |
tree | 31fb3fe3321e7e83cc0e498937e7c61e935c18e6 /libraries/Firmata/examples/ServoFirmata/ServoFirmata.pde | |
parent | 8af8938d41a86b655159736f8887aecac414e1ac (diff) |
copying Firmata-0.4beta2 release into trunk, then I'll adjust it to Arduino-0012
Diffstat (limited to 'libraries/Firmata/examples/ServoFirmata/ServoFirmata.pde')
-rw-r--r-- | libraries/Firmata/examples/ServoFirmata/ServoFirmata.pde | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/libraries/Firmata/examples/ServoFirmata/ServoFirmata.pde b/libraries/Firmata/examples/ServoFirmata/ServoFirmata.pde new file mode 100644 index 0000000..a3c609c --- /dev/null +++ b/libraries/Firmata/examples/ServoFirmata/ServoFirmata.pde @@ -0,0 +1,39 @@ +/* This firmware supports as many servos as possible using the Servo" library + * included in Arduino 0012 + * + * TODO add message to configure minPulse/maxPulse/degrees + * + * This example code is in the public domain. + */ + +#include <Firmata.h> +#include <Servo.h> + +Servo servo9; +Servo servo10; + +void analogWriteCallback(byte pin, int value) +{ + if(pin == 9) + servo9.write(value); + if(pin == 10) + servo10.write(value); +} + +void setup() +{ + Firmata.setFirmwareVersion(0, 2); + Firmata.attach(ANALOG_MESSAGE, analogWriteCallback); + + servo9.attach(9); + servo10.attach(10); + + Firmata.begin(); +} + +void loop() +{ + while(Firmata.available()) + Firmata.processInput(); +} + |