mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-09-17 17:32:25 -07:00
switch to setup for Arduino Boards Manager
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
|
||||
void setup() {
|
||||
//If prompted for a pairing code it is 1234, 12345, or 000000
|
||||
Serial.begin(9600);
|
||||
}
|
||||
|
||||
// the loop routine runs over and over again forever:
|
||||
void loop() {
|
||||
if (Serial.available()) {
|
||||
Serial.write(Serial.read());
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user