Programming an ESP32 NodeMCU with MicroPython: Setup with Thonny

Поделиться
HTML-код
  • Опубликовано: 5 окт 2020
  • Setup your ESP32 NodeMCU for MicroPython with the Thonny IDE.
    Article: micronote.tech/2020/08/Gettin...
    How to find your device's port: micronote.tech/2020/01/How-to...
    Thonny IDE: thonny.org/
    MicroPython Firmware: micropython.org/download/esp32/
    Get the Atlas kit: www.etsy.com/listing/78997291...
    Discord: / discord
    Community Submission Form: forms.gle/B5QtxLQ3NYQHGuJQ8
    Social:
    Follow Micronote: / micro_note
    Follow me: / carlosupina
  • НаукаНаука

Комментарии • 24

  • @robthom1919
    @robthom1919 3 года назад +2

    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.

  • @FrancoisSchnell
    @FrancoisSchnell 3 года назад +4

    Very clear and straight to the point, thanks!

  • @tibfox
    @tibfox 3 года назад +3

    Thank you so much for this great and simple tutorial!

  • @harshavardhanreddyk3900
    @harshavardhanreddyk3900 3 года назад +5

    Good work bro. Keep going

  • @shivaramvelayutham5715
    @shivaramvelayutham5715 3 года назад +1

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

  • @venkatk1307
    @venkatk1307 2 года назад +1

    Awesome man. You made my day💖

  •  3 года назад +2

    Excelent video! Thank you.

  • @gaguto
    @gaguto 3 года назад +1

    rly great and useful video

  • @ctonew6155
    @ctonew6155 8 месяцев назад

    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.

  • @juanmanuelgonzalezsanchez7416
    @juanmanuelgonzalezsanchez7416 2 года назад

    Excellent tutorial

  • @Techinova
    @Techinova Месяц назад

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

  • @carlomagno1123
    @carlomagno1123 3 года назад

    I like, its work!

  • @explorerofinfinity722
    @explorerofinfinity722 Год назад

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

  • @slamanaim1837
    @slamanaim1837 2 года назад

    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

  • @kamalibrahim7322
    @kamalibrahim7322 2 года назад

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

  • @AM-iv2xn
    @AM-iv2xn 3 года назад

    @Micronote can you help me?

  • @stocktrackr4842
    @stocktrackr4842 2 года назад

    Hey man.

  • @oraloni1681
    @oraloni1681 2 года назад

    are you Italian?

    • @metalmancytech
      @metalmancytech  2 года назад +1

      I'm an American with an Italian name. 👍

    • @oraloni1681
      @oraloni1681 2 года назад

      @@metalmancytech I only asked because of the way you pronounce th-onny :)) And I meant Italian-American (sorry for that)
      Thanks for the video btw. It really helped me

  • @AzimyPc
    @AzimyPc 3 года назад

    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 "", line 8
    SyntaxError: invalid syntax
    >>>

    • @metalmancytech
      @metalmancytech  3 года назад +1

      Make sure sure you put a colon at the end of the for statement.
      for _ in range(10):