ESP32 MICROPYTHON WIFI AUTOCONNECT TO ACCESS POINT

Поделиться
HTML-код
  • Опубликовано: 21 фев 2020
  • This video demonstrates how to connect ESP32 to ACCESS POINT over WIFI.
    Here ESP32 acts as a CLIENT which is also called as STATION in Micropython. THONNY PYTHON IDE is used to write & upload code on to ESP32 device.
    code download :
    www.alselectro.com/files/wifi_...
  • ХоббиХобби

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

  • @hippie-io7225
    @hippie-io7225 4 года назад +10

    Your opening explanation of access point and client was brilliant! Thank you.
    Every branch of electronics and computers has a "vocabulary". I very much like your contribution to the "dictionary"! All technologists will make their positions stronger by learning such clear communication techniques such as yours.

    • @SaravananAL
      @SaravananAL  4 года назад +4

      Thanks for your positive comment & support

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

    Great job! Thank you!

  • @abpccpba
    @abpccpba 4 года назад

    Thanks from Arizona

  • @Sarchitta
    @Sarchitta 6 месяцев назад

    great help indeed! thank you

  • @electronic7979
    @electronic7979 4 года назад +1

    Helpful video. I like it

  • @mrsvappawar353
    @mrsvappawar353 4 года назад

    Thank u sir for making video

  • @punjabilog
    @punjabilog 4 года назад

    Thank you very much Sir

  • @imadeddarraz3247
    @imadeddarraz3247 4 года назад

    Thank you,

  • @TOMTOM-nh3nl
    @TOMTOM-nh3nl Год назад

    Thank You

  • @punjabilog
    @punjabilog 4 года назад +2

    Sir can you please make a video, that we can install packages in esp8622. would be really appreciate

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

    Thank you!
    can you teach how to connect Firebase with ESP32 using Thonny please

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

    Hi, great job! So, is it possible to connect ESP32 by Wifi-direct to smartphone without using AP?? Thanks!

  • @user-mw3cd3eu7w
    @user-mw3cd3eu7w 8 месяцев назад

    Good Work. Thank a lot.

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

    How to configure mesh network using esp 32 pls make a video on that sir 🙏

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

    Hello , what is the pupose of this code line . because if you remove it there is no difference? while station.isconnected() == False:
    pass

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

    great tutorials. After I run the connectWifi script it just sits on >>>
    Never get a response after that. I checked ssid / pass , even tried a different esp32. ☹️

  • @ronitmehta5908
    @ronitmehta5908 4 года назад +1

    Can you please tell me which screen recorder you have used? I also want to use it.

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

    boot.py and main.py were executed but ConnectWifi is neither executing nor giving error. Please advise

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

    I ran the code but keep getting
    RUN: boot.py
    Traceback (most recent call last):
    File "main.py", line 8, in
    ImportError: can't import name NullHandler
    MicroPython v1.18 on 2022-01-17; ESP32 module with ESP32
    can someone guide me on how to avoid this error

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

    how would you do this but with a static address

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

      xxxx.ifconfig(('static ip','mask subnet','router ip','dns'))

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

    help, when I run the program ConnectWifi.py I get an error on line 16:
    15 while station.isconnected() == False
    16 pass
    I get this error:
    Traceback (most recent call last):
    File "", line 16
    SyntaxError: invalid syntax

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

      you missed the double point at end of line 15
      15 while station.isconnected() == False : #While statement has to end with :
      next line has to be indented
      16 pass #like this

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

      should actually learn your python before doing this