Setup serial example

This commit is contained in:
Thijs Raymakers 2024-06-19 22:44:31 +02:00
parent 51ab2b029e
commit 35e97572d9
No known key found for this signature in database
2 changed files with 8 additions and 2 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
.pio .pio
compile_commands.json

View file

@ -1,3 +1,8 @@
void setup() {} #include <Arduino.h>
void loop() {} void setup() { Serial.begin(9600); }
void loop() {
Serial.println("Hello world!");
delay(1000);
}