mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-03 14:24:15 +01:00
df9835efaf
Conflicts: app/src/processing/app/Editor.java app/src/processing/app/Sketch.java build/shared/examples/4.Communication/SerialCallResponse/SerialCallResponse.pde build/shared/lib/theme/theme.txt hardware/arduino/cores/arduino/HardwareSerial.h hardware/arduino/cores/arduino/Print.cpp hardware/arduino/cores/arduino/WString.h hardware/arduino/variants/mega/pins_arduino.h libraries/Ethernet/examples/PachubeClient/PachubeClient.ino libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino libraries/Firmata/examples/EchoString/EchoString.ino libraries/SD/File.cpp libraries/SoftwareSerial/SoftwareSerial.cpp libraries/SoftwareSerial/SoftwareSerial.h libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino libraries/SoftwareSerial/keywords.txt
41 lines
728 B
C++
41 lines
728 B
C++
/* This sketch accepts strings and raw sysex messages and echos them back.
|
|
*
|
|
* This example code is in the public domain.
|
|
*/
|
|
#include <Firmata.h>
|
|
|
|
byte analogPin;
|
|
|
|
void stringCallback(char *myString)
|
|
{
|
|
Firmata.sendString(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);
|
|
}
|
|
|
|
void setup()
|
|
{
|
|
Firmata.setFirmwareVersion(0, 1);
|
|
Firmata.attach(STRING_DATA, stringCallback);
|
|
Firmata.attach(START_SYSEX, sysexCallback);
|
|
Firmata.begin(57600);
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
while(Firmata.available()) {
|
|
Firmata.processInput();
|
|
}
|
|
}
|
|
|
|
|