First steps with Wemos Lolin32 (ESP32, Arduino IDE, Windows)

Опубликовано: 04 Август 2026
на канале: plukas
49,776
190

0:00 Introduction
0:18 Download GIT and clone repository
1:10 Run get.exe to install ESP32 boards to Arduino IDE
1:15 Select Lolin32 board and port
1:30 Upload sketch to ESP32
1:50 Serial monitor test
1:55 Board's LED test

Update 21.1.2018: Since youtube made the rules for the new creators more difficult, please subscribe to support the funding of this channel. Thank you!

Where to buy:
https://s.click.aliexpress.com/e/_ole...

Git: https://git-scm.com/download/win
Arduino IDE: https://www.arduino.cc/en/main/software

Steps to install Arduino ESP32 support on Windows:
https://github.com/espressif/arduino-...

Step 1:
Clone Espressif Arduino Repository (use Git GUI from https://git-scm.com/download/win)
Repository: https://github.com/espressif/arduino-...

Step 2:
Run C:\Users\USER\Documents\Arduino\hardware\espressif\esp32\tools\get.exe

Step 3:
Connect Lolin32 and wait for installation of driver

Step 4:
Select Lolin32 board from board manager and COM port

Step 5:
Compile and upload basic blink sketch

Source code:
int ledPin = 5;

void setup()
{
pinMode(ledPin, OUTPUT);
Serial.begin(115200);
}

void loop()
{
Serial.println("Hello, world!");
digitalWrite(ledPin, HIGH);
delay(500);
digitalWrite(ledPin, LOW);
delay(500);
}

==========
#plukas #wemos #lolin32