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