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.
43 lines
818 B
Plaintext
43 lines
818 B
Plaintext
14 years ago
|
/* This firmware supports as many servos as possible using the Servo library
|
||
|
* included in Arduino 0017
|
||
15 years ago
|
*
|
||
|
* TODO add message to configure minPulse/maxPulse/degrees
|
||
|
*
|
||
|
* This example code is in the public domain.
|
||
|
*/
|
||
|
|
||
|
#include <Servo.h>
|
||
14 years ago
|
#include <Firmata.h>
|
||
15 years ago
|
|
||
14 years ago
|
Servo servos[MAX_SERVOS];
|
||
15 years ago
|
|
||
|
void analogWriteCallback(byte pin, int value)
|
||
|
{
|
||
14 years ago
|
if (IS_PIN_SERVO(pin)) {
|
||
|
servos[PIN_TO_SERVO(pin)].write(value);
|
||
|
}
|
||
15 years ago
|
}
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
14 years ago
|
byte pin;
|
||
|
|
||
15 years ago
|
Firmata.setFirmwareVersion(0, 2);
|
||
|
Firmata.attach(ANALOG_MESSAGE, analogWriteCallback);
|
||
|
|
||
14 years ago
|
for (pin=0; pin < TOTAL_PINS; pin++) {
|
||
|
if (IS_PIN_SERVO(pin)) {
|
||
|
servos[PIN_TO_SERVO(pin)].attach(PIN_TO_DIGITAL(pin));
|
||
|
}
|
||
|
}
|
||
15 years ago
|
|
||
|
Firmata.begin(57600);
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
while(Firmata.available())
|
||
|
Firmata.processInput();
|
||
|
}
|
||
|
|