2011-09-09 23:11:42 +02:00
|
|
|
/*
|
|
|
|
* Firmata is a generic protocol for communicating with microcontrollers
|
|
|
|
* from software on a host computer. It is intended to work with
|
|
|
|
* any host computer software package.
|
|
|
|
*
|
|
|
|
* To download a host software package, please clink on the following link
|
|
|
|
* to open the download page in your default browser.
|
|
|
|
*
|
|
|
|
* http://firmata.org/wiki/Download
|
|
|
|
*/
|
|
|
|
|
2013-10-21 09:58:40 +02:00
|
|
|
/* This firmware supports as many servos as possible using the Servo library
|
2010-08-06 23:55:17 +02:00
|
|
|
* included in Arduino 0017
|
2009-06-01 10:32:11 +02:00
|
|
|
*
|
|
|
|
* TODO add message to configure minPulse/maxPulse/degrees
|
|
|
|
*
|
|
|
|
* This example code is in the public domain.
|
|
|
|
*/
|
2013-10-21 09:58:40 +02:00
|
|
|
|
2009-06-01 10:32:11 +02:00
|
|
|
#include <Servo.h>
|
2010-08-06 23:55:17 +02:00
|
|
|
#include <Firmata.h>
|
2009-06-01 10:32:11 +02:00
|
|
|
|
2010-08-06 23:55:17 +02:00
|
|
|
Servo servos[MAX_SERVOS];
|
2009-06-01 10:32:11 +02:00
|
|
|
|
|
|
|
void analogWriteCallback(byte pin, int value)
|
|
|
|
{
|
2013-10-21 09:58:40 +02:00
|
|
|
if (IS_PIN_SERVO(pin)) {
|
|
|
|
servos[PIN_TO_SERVO(pin)].write(value);
|
|
|
|
}
|
2009-06-01 10:32:11 +02:00
|
|
|
}
|
|
|
|
|
2013-10-21 09:58:40 +02:00
|
|
|
void setup()
|
2009-06-01 10:32:11 +02:00
|
|
|
{
|
2013-10-21 09:58:40 +02:00
|
|
|
byte pin;
|
2010-08-06 23:55:17 +02:00
|
|
|
|
2013-10-21 09:58:40 +02:00
|
|
|
Firmata.setFirmwareVersion(0, 2);
|
|
|
|
Firmata.attach(ANALOG_MESSAGE, analogWriteCallback);
|
2009-06-01 10:32:11 +02:00
|
|
|
|
2013-10-21 09:58:40 +02:00
|
|
|
for (pin = 0; pin < TOTAL_PINS; pin++) {
|
|
|
|
if (IS_PIN_SERVO(pin)) {
|
|
|
|
servos[PIN_TO_SERVO(pin)].attach(PIN_TO_DIGITAL(pin));
|
2010-08-06 23:55:17 +02:00
|
|
|
}
|
2013-10-21 09:58:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Firmata.begin(57600);
|
2009-06-01 10:32:11 +02:00
|
|
|
}
|
|
|
|
|
2013-10-21 09:58:40 +02:00
|
|
|
void loop()
|
2009-06-01 10:32:11 +02:00
|
|
|
{
|
2013-10-21 09:58:40 +02:00
|
|
|
while (Firmata.available())
|
|
|
|
Firmata.processInput();
|
2009-06-01 10:32:11 +02:00
|
|
|
}
|
|
|
|
|