mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #513] Esp32 testing #432
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#432
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tablatronix on GitHub (Feb 11, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/513
This has been merged into development
The Development branch implements support for esp8266 and esp32
The espressif esp32 platform does not include webserver
Tested with https://github.com/bbx10/WebServer_tng
Known Isssues
NVS corruption
W (84) wifi: wifi nvs_open fail ret=4353or wifi wont connect with
ap not founderrorThere seems to be some kind of corruption of NVS in some version of core lib, or the partition was changed at some point. Reformatting NVS might help.
how to fix
https://desire.giesecke.tk/index.php/2018/02/26/wifi-connection-problem-nvs-corrupted/
I also added some capability in wifimanager to do this with special define
@tablatronix commented on GitHub (Feb 11, 2018):
#241
#500
@gepd commented on GitHub (Feb 13, 2018):
I'll let here a funtional example to compile the esp32 branch with PlatformIO, it includes the patched libraries
webserveranddnsserver. TheWiFiManagerlibrary will be downloaded automatically. (needs git installed)I hope this can save time to anyone who like to test the branch.
WiFiManager_esp32.zip
@tablatronix commented on GitHub (Feb 15, 2018):
merged into development!
@gepd commented on GitHub (Feb 17, 2018):
I've been testing the library so far it's very stable.
I've just missing an option to configure the hostname. I've manually solve this with:
I've update
handleWifito get the list of available networks asynchronously, that way the UI loads within a second and then shows the list, I'll send a PR if you are interestedThe last thing I'm missing is an option to display the reason why the connection wasn't able to be perform in the last try (STA mode). You will no always have access to read the debug output.
What could be the best way to implement this?
EEPROM, SPIFFS?
@tablatronix commented on GitHub (Feb 17, 2018):
Yeah that was on my list of todos
@tablatronix commented on GitHub (Feb 17, 2018):
Do you need to store it, or can it be a lifetime variable with a getter?
@tablatronix commented on GitHub (Feb 17, 2018):
The goal was to get esp32 working, then add additional features as needed and add special support for esp32 stuff that is not supported in esp8266 and also polyfill some stuff that is
@tablatronix commented on GitHub (Feb 17, 2018):
Feel free to create issues for that because I have not had a chance to work much with it.
@gepd commented on GitHub (Feb 18, 2018):
I've create two issues, and will send a PR for the asynchronous fix
@tablatronix commented on GitHub (Mar 5, 2018):
✔️ DNS Server has been fixed in esp32 core
@twinotter commented on GitHub (Apr 9, 2018):
I'd like to try this, but I'm a bit confused by the mulitple webserver approaches I've found online. Tablatronix, can you tell me how you set up your webserver library? Thanks!
@tablatronix commented on GitHub (Apr 9, 2018):
You need https://github.com/bbx10/WebServer_tng
Stick in esp32 libraries
I have not updated my fork , so do not suggest using it
@twinotter commented on GitHub (Apr 9, 2018):
thanks for the fast response! I got a little further using bbx10's WifiManager and WebServer_tng. But I'm still getting this error in compiling: user_interface.h: No such file or directory
Any ideas? I can't find user_interface.h in any of the Arduino libraries...
@tablatronix commented on GitHub (Apr 9, 2018):
No idea, you need to use development branch of wifimanager...
@tablatronix commented on GitHub (Apr 9, 2018):
Shit i posted the wrong link, so sorry for wasting your time.
Doh
Use this repo/development
And
https://github.com/bbx10/WebServer_tng
Sorry for the confusion
@tablatronix commented on GitHub (Apr 9, 2018):
I updated first post for clarity
@twinotter commented on GitHub (Apr 9, 2018):
It looks like the missing user_interface.h is related to a fairly different structure of the esp32 library from the esp8266 library. I installed the 8266 library and found the file in the tools/sdk folder. The equivalent folder in the esp32 folder structure doesn't have user_interface.h, os_types.h, and many others...
Perhaps this is a fundamentally different way that the esp32 libraries were installed? I used the Windows install path and everything seem to be updated... and I've compiled and run code on an ESP32 dev kit C... Is there a step I'm missing?
@tablatronix commented on GitHub (Apr 9, 2018):
Are you using development branch? Esp32 doesnt use this file that I know of, what is including it?
@twinotter commented on GitHub (Apr 9, 2018):
!! Okay, so my understanding of git is clearly very limited. Not sure how to use the gui to checkout a branch. But I found a command-line that would do it and used that, so now I'm at least looking at the same files. :)
git clone https://github.com/tzapu/WiFiManager.git --branch development --single-branch WiFiManagerbtw, the way NOT to do it: don't select the branch from the main git page and then expect that the clone link has been updated. :)
That portion of the code compiled and I'm off working on other bugs now. Thank you!
@tablatronix commented on GitHub (Apr 9, 2018):
Yeah the clone does the repo not a branch, to do a branch select development from be branch dropdown and download the zip. Or use girhub desktop and just change branch.
@bkrajendra commented on GitHub (Jun 10, 2018):
What's the issue if we use https://github.com/me-no-dev/ESPAsyncWebServer for both eso8266 and esp32? Its more stable and working library.
@tablatronix commented on GitHub (Jun 11, 2018):
Its larger... and not official either
@naveenneog commented on GitHub (Jul 10, 2018):
ESP32 WebServer is now available in the core PR#430 is closed