Arduino-Makefile/examples/SerialPrint/SerialPrint.ino

10 lines
152 B
C++

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