1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-05-18 21:15:36 +02:00
cdf2018-principal/arduino/Arduino-Makefile/examples/SerialPrint/SerialPrint.ino

11 lines
152 B
Arduino
Raw Normal View History

void setup() {
Serial.begin(9600);
Serial.print("Press any key: ");
}
void loop() {
if (Serial.available()) {
Serial.println(Serial.read());
}
}