2016-07-10 00:36:44 -07:00

10 lines
102 B
C++

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