mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #1666] Wi-Fi connection status via LED #1416
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#1416
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 @serlancelot on GitHub (Oct 11, 2023).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1666
Hello, I have tried to put an LED to indicate if it is connected to the Wi-Fi and it works halfway.
I tell you:
I have set two "modes", one would be an AP with which the LEDs already work (in a somewhat sloppy way) and the other would be through Wifimanager (which creates the "temporary" AP to connect to the router's Wifi ).
This is the one where I have problems getting one LED to light up when it is not connected and another when it is.
The problem is the following, when you connect to the router the status LED changes fine but when you turn off the router it still has the active connection LED and when the temporary AP is created it does nothing (I don't know how to do it).
Thanks greetings!
Arduino IDE 2.1.0
ESP32 dev module
ESP32 de Espressif 2.0.14
WiFiManager 2.0.16
LittleFS_esp32 1.0.5 If I update it to 1.0.6 (the website does not work)
ESPAsyncWebServer 1.2.6
@tablatronix commented on GitHub (Oct 11, 2023):
Use non blocking mode
@serlancelot commented on GitHub (Oct 11, 2023):
Hello, thanks for the response, I have managed to solve almost everything... I still have the problem with the AP that Wifimanager generates, how is there a WiFi.softAPgetStationNum() style command? so that when someone connects I can turn on the LED... (like I have with WiFi.mode(WIFI_AP);)
Thanks greetings!