tayfunulu / WiFiManager

WiFi manager for ESP8266 - ESP12 - ESP32 - micropython
MIT License
352 stars 105 forks source link

Can't see the MicroPython SSID #1

Closed Stan92 closed 6 years ago

Stan92 commented 6 years ago

Hi, I m trying to play with your code (I m new to MicroPython). I've copied your 2 files onto my ESP32 board and I run the main.py (using Repl). I get the message saying "Connect to Wifi ssid..... listening on ('0.0.0.0', 80) But I can't see the SSID (Micropython)... Do I have to to do a specific configuration? Another question, will it be possible to change the SSID name? Thanks for your support

tayfunulu commented 6 years ago

Normally, i didn't try with ESP32. it must be same but i'll try. to change the SSID name is possible

wlan_ap = network.WLAN(network.AP_IF) wlan_ap.config(essid='My AP SSid', channel=11)

tayfunulu commented 6 years ago

yes i tried, default settings of wifi is disabled for esp32 .

you could enable

import network 
wlan_ap = network.WLAN(network.AP_IF)
wlan_ap.active(True) 
wlan_ap.config(essid='My AP SSid')
Stan92 commented 6 years ago

Thanks I fixed it this way There’s another problem when you submit the form after selecting the ssid It seems the ssid and password are not retreived I used some part of your code and for the web server part I used https://github.com/jczic/MicroWebSrv

tayfunulu commented 6 years ago

perfect ! i'll check again with esp32... i wrote this code for esp8266... but it's look there are some compatibility problems between esp32 and esp12 ... also micropython 1.8 and 1.9 :(

caxefaizan commented 3 years ago

i am facing the same problem.. the ssid shows for a sec i guess and then disappears.!!! is it a working library?

ebolisa commented 3 years ago

i am facing the same problem.. the ssid shows for a sec i guess and then disappears.!!! is it a working library?

Make sure your SSID and PWD don't have spaces or special chars.

caxefaizan commented 3 years ago

i am facing the same problem.. the ssid shows for a sec i guess and then disappears.!!! is it a working library?

Make sure your SSID and PWD don't have spaces or special chars.

I found the problem. i had burnt the firmware offered by Upy craft. Downloading the firmware from micropython website solved the problem. Thanks