Programming an ESP32 NodeMCU with MicroPython: Setup with Thonny

preview_player
Показать описание
Setup your ESP32 NodeMCU for MicroPython with the Thonny IDE.

Social:
Рекомендации по теме
Комментарии
Автор

I tried various methods to communicate to my new ESP32 then found your video. I wasn't pressing the boot button on the ESP32, or pressing it at the right time. Followed your steps, , nice and concise, , now working. Thanks, Good job.

robthom
Автор

This tutorial was very clear Inthink the best on the youtube. Just remained to new users to download silicon labs driver for the esp32 to turn on.

ctonew
Автор

really useful to get started with micropython pls help people like us in these topics

shivaramvelayutham
Автор

Obrigado por este tutorial, com ele eu entendi sobre Esp32 e Micropython, valeu!

Techinova
Автор

Very clear and straight to the point, thanks!

FrancoisSchnell
Автор

Thank you so much for this great and simple tutorial!

tibfox
Автор

Hi.. thanks for this video.
Want to know, how to run an url address from Thonny ide? Which package needs to install?

explorerofinfinity
Автор

thx very much but i have a question :please after this video and after flashing my esp is it possible to program it with arduino ide or i have to do again the steps of flashing ....
thx

slamanaim
Автор

Thank you for informative video. I follow all instructions but unfortunately I get this error "invalid header: :(

kamalibrahim
Автор

from this code from machine import Pin
from time import sleep

led = Pin(2, Pin.OUT)

for _ in range(10)
led.value(1)
sleep(1)
led.value(0)
sleep(1)

I have this Error

MicroPython v1.13 on 2020-09-11; ESP module with ESP8266
Type "help()" for more information.
>>> %Run -c $EDITOR_CONTENT
Traceback (most recent call last):
File "<stdin>", line 8
SyntaxError: invalid syntax
>>>

AzimyPc