diff options
Diffstat (limited to 'learning_examples/hellloworld_esp32/hellloworld_esp32.ino')
-rw-r--r-- | learning_examples/hellloworld_esp32/hellloworld_esp32.ino | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/learning_examples/hellloworld_esp32/hellloworld_esp32.ino b/learning_examples/hellloworld_esp32/hellloworld_esp32.ino new file mode 100644 index 0000000..7623a57 --- /dev/null +++ b/learning_examples/hellloworld_esp32/hellloworld_esp32.ino @@ -0,0 +1,7 @@ +void setup() { + Serial.begin(9600); +} +void loop() { + Serial.println("Hello!"); + delay(1000); +}
\ No newline at end of file |