mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #531] clean up examples #443
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#443
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 19, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/531
Too many examples, simplify
@tablatronix commented on GitHub (Feb 19, 2018):
Suggested
@2delarosa commented on GitHub (Mar 20, 2018):
I'm looking for an example of setting the ESP hostname when in station mode.
@tablatronix commented on GitHub (Mar 20, 2018):
#570
@tablatronix commented on GitHub (Jun 29, 2018):
Move all autoconnect into subfolder
Move basic autoconnect to simple example ( minimal )
reduce variations, remove all custom code from examples
add custom example containing kitchen sink of custom options for configportal
add non blocking example for configportal and webportal, maybe make it smart, call configportal if not connected, and webportal if paired with ap, use selection logic in the example so reduce number of files.
add basic example, autoconnect, ondemand configportal, external reset all in one, useful for testing code
@tablatronix commented on GitHub (Jun 29, 2018):
Advanced config
AutoConnect
setConnectTimeout
setEnableConfigPortal
setHostname
setSTAStaticIPConfig(..,dns)
ConfigPortal
setConfigPortalTimeout
setConfigPortalBlocking
setCaptivePortalEnable
setAPStaticIPConfig
setBreakAfterConfig
setSaveConnectTimeout
WEB UI
setRemoveDuplicateAPs
setScanDispPerc
setMenu(menu_page_t[])
setShowDnsFields
setShowStaticFields
setShowInfoErase
setCustomHeadElement
setMinimumSignalQuality
functionality
getConfigPortalSSID
setRestorePersistent
setCaptivePortalClientCheck
setWebPortalClientCheck
startWebPortal
stopWebPortal
process
disconnect
erase
debugSoftAPConfig
debugPlatformInfo
setWiFiAutoReconnect
getLastConxResult
getWLStatusString
getWiFiIsSaved
getModeString
htmlEntities
@joko2020 commented on GitHub (Jul 22, 2021):
Hi @tablatronix I need help to use
setBreakAfterConfig,What i want to do is disable config portal or try to connect to wifi in background mode, so the program can continue to void loop. can this function be used?
thank you
@tablatronix commented on GitHub (Jul 24, 2021):
Yes that is non blocking mode see the examples
@joko2020 commented on GitHub (Jul 24, 2021):
Ok thanks