mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 17:15:53 +03:00
[GH-ISSUE #1421] ESP32-S3 support #1215
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#1215
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 @acirulis on GitHub (May 20, 2022).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1421
Has anyone successfully used WifiManager library on ESP32-S3?
@tablatronix commented on GitHub (Jun 17, 2022):
I do not yet have an S3 dev kit
@touchgadget commented on GitHub (Jun 26, 2022):
WM fails to compile on ESP32S3 because the temperature sensor API functions are not implemented.
A one line fix works for S3, S2, C3, and regular ESP32.
@tablatronix commented on GitHub (Jun 26, 2022):
untested, added a wm flag so it can be easily modified or removed later
@touchgadget commented on GitHub (Jun 27, 2022):
github.com/tzapu/WiFiManager@06c63720f6/WiFiManager.cpp (L2175)The above produces a warning.
warning: extra tokens at end of #ifdef directiveI am pretty sure #ifdef only allows the name of a symbol, not an expression.
The following works for me.
The same
extra tokenswarning appears when building AutoConnectWithFSParameters.ino. There are 3 occurences. And 3 more in AutoConnectWithFSParametersAndCustomIP.ino.github.com/tzapu/WiFiManager@06c63720f6/examples/Parameters/SPIFFS/AutoConnectWithFSParameters/AutoConnectWithFSParameters.ino (L49)Maybe the #ifdef should look like this.
@tablatronix commented on GitHub (Jun 27, 2022):
I was wondering about those, kept forgetting to check that as my compiler is not always -Wall
@touchgadget commented on GitHub (Jun 27, 2022):
Thanks, ESP32S3 builds are working fine.
@shashi5841 commented on GitHub (Sep 10, 2022):
I am facing the same issue can you please guide me on how to solve it .
@shashi5841 commented on GitHub (Sep 10, 2022):
Tested with esp32-s3 with the same issue.
ESP32-S3 with WiFiManager lib.
Can't find SSID AutoConnectAP, when the module is in AP mode.
Terminal output:
SPIFFS mounted
*wm:[1] AutoConnect
*wm:[2] ESP32 event handler enabled
*wm:[2] Connecting as wifi client...
*wm:[2] setSTAConfig static ip not set, skipping
*wm:[1] Connecting to SAVED AP: espressif
*wm:[1] connectTimeout not set, ESP waitForConnectResult...
*wm:[2] [EVENT] WIFI_REASON: 201
*wm:[2] [EVENT] WIFI_REASON: NO_AP_FOUND
*wm:[2] Connection result: WL_NO_SSID_AVAIL
*wm:[1] AutoConnect: FAILED
*wm:[2] Starting Config Portal
*wm:[2] Disabling STA
*wm:[2] Enabling AP
*wm:[1] StartAP with SSID: AutoConnectAP
*wm:[2] AP has anonymous access!
*wm:[1] AP IP address: 192.168.4.1
*wm:[1] Starting Web Portal
*wm:[2] HTTP server started
*wm:[2] Config Portal Running, blocking, waiting for clients...
*wm:[2] NUM CLIENTS: 0
*wm:[2] NUM CLIENTS: 0
*wm:[2] NUM CLIENTS: 0
*wm:[2] NUM CLIENTS: 0
I used 4 different mobile phones and different laptop PC to find esp32s3 in the WiFi list but the module was not broadcasting.
Used the latest library of WiFi manager v2.0.12-beta
Please advise what to do.
@tablatronix commented on GitHub (Sep 10, 2022):
@shashi5841 please see #1482
@roleroz commented on GitHub (Jun 1, 2023):
Do we still need to disable the temp sensor for ESP32S3?, it seems to be working now
At least, I forked this, removed the WM_NOTEMP macro, and linked it into my ESP32-S3 devkit board, it compiled, linked and flashed, and it seems to be working fine
@roleroz commented on GitHub (Jun 1, 2023):
For the record, this seems to have been added with IDF's 4.4 version (https://github.com/espressif/arduino-esp32/pull/6994)
@tablatronix commented on GitHub (Jun 1, 2023):
I can add a ver check maybe
@roleroz commented on GitHub (Jun 18, 2023):
Should we reopen this issue?, or start a new one?
@tablatronix commented on GitHub (Jun 18, 2023):
New one
@roleroz commented on GitHub (Jun 19, 2023):
Filed https://github.com/tzapu/WiFiManager/issues/1629. Please let me know if I'm missing anything, as this is the first time filing an issue against WiFiManager 😉