mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Revert "Merge branch 'master' of github.com:arduino/Arduino into diskloader_reboot"
This reverts commitdf9835efaf
, reversing changes made toec45af8bfa
. Conflicts: hardware/arduino/variants/mega/pins_arduino.h libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino
This commit is contained in:
@ -1,3 +1,14 @@
|
||||
/*
|
||||
* 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
|
||||
*/
|
||||
|
||||
/* This sketch accepts strings and raw sysex messages and echos them back.
|
||||
*
|
||||
* This example code is in the public domain.
|
||||
@ -14,12 +25,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