mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Updating Firmata to r71.
Note that I also changed the extensions of the examples (firmwares) from .pde to .ino and removed the Makefiles (since they assume the pde extension). http://code.google.com/p/arduino/issues/detail?id=447
This commit is contained in:
@ -14,12 +14,7 @@ void stringCallback(char *myString)
|
||||
|
||||
void sysexCallback(byte command, byte argc, byte*argv)
|
||||
{
|
||||
Serial.write(START_SYSEX);
|
||||
Serial.write(command);
|
||||
for(byte i=0; i<argc; i++) {
|
||||
Serial.write(argv[i]);
|
||||
}
|
||||
Serial.write(END_SYSEX);
|
||||
Firmata.sendSysex(command, argc, argv);
|
||||
}
|
||||
|
||||
void setup()
|
||||
|
Reference in New Issue
Block a user