euglena/lib/serial/test/serial_throughput/arduino/serial_thoughput.ino

10 lines
102 B
Arduino
Raw Normal View History

2016-07-10 00:36:44 -07:00
void setup() {
Serial.begin(115200);
}
void loop() {
while (true) {
Serial.write('.');
}
}