Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 649 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 649 Bytes

Hello World

Steps

  1. Open Arduino IDE, create project and paste the following code:

void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Hello World!");
delay(500);
}

  1. Press and hold ESP32 Boot button and click Upload in Arduino IDE. You can release the button when Connecting... text shows up in Output.

  2. Open Tools > Serial Monitor for program output.

Sources