10 lines
102 B
C++
10 lines
102 B
C++
void setup() {
|
|
Serial.begin(115200);
|
|
}
|
|
|
|
void loop() {
|
|
while (true) {
|
|
Serial.write('.');
|
|
}
|
|
}
|