From 9cb5a1dab096ba3d7babe1fc2d2717f5cea65cb8 Mon Sep 17 00:00:00 2001 From: Alphara <42233094+xAlpharax@users.noreply.github.com> Date: Sat, 4 Nov 2023 12:59:53 +0000 Subject: Indeed many changes to start off optimistically:] Pretty much just learned how to use the board, the components, wiring of things and how to use a breadboard. Also I have been really frustrated to learn that arduino ides and bunch of other things work absolutlely terrible under linux and not only. It even works buggy ways within Windows (i also tried legacy versions and achieved the same conclusion). Anyways, not really much to detail other than my learning process. --- learning_examples/hellloworld_esp32/hellloworld_esp32.ino | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 learning_examples/hellloworld_esp32/hellloworld_esp32.ino (limited to 'learning_examples/hellloworld_esp32/hellloworld_esp32.ino') 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 -- cgit v1.2.3