mirror of
https://github.com/RobotechLille/cdf2018-principal
synced 2024-11-15 04:46:06 +01:00
11 lines
152 B
Arduino
11 lines
152 B
Arduino
|
void setup() {
|
||
|
Serial.begin(9600);
|
||
|
Serial.print("Press any key: ");
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
if (Serial.available()) {
|
||
|
Serial.println(Serial.read());
|
||
|
}
|
||
|
}
|