euglena/lib/serial/test/serial_throughput/arduino/serial_thoughput.ino
2016-07-10 00:36:44 -07:00

10 lines
102 B
C++

void setup() {
Serial.begin(115200);
}
void loop() {
while (true) {
Serial.write('.');
}
}