aboutsummaryrefslogtreecommitdiff
path: root/examples/SerialPrint/SerialPrint.ino
blob: e129c9d3f4ef33590dbc3c5bba5030f13d1f476c (plain)
1
2
3
4
5
6
7
8
9
10
void setup() {
	Serial.begin(9600);
	Serial.print("Press any key: ");
}

void loop() {
	if (Serial.available()) {
		Serial.println(Serial.read());
	}
}