mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 17:15:53 +03:00
[GH-ISSUE #24] ap scan speed #20
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#20
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 (Dec 21, 2015).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/24
I am at a location where I have maybe 25 AP in range with the same name.
Sometimes the list dumps out immediately, and the page pops up.
Sometimes each one ticks by 1 every 10 seconds, and it takes forever, and the page times out.
I know i can skip scans, but why do you think this is? Maybe i can fix it since I can reproduce easily.
@tablatronix commented on GitHub (Dec 21, 2015):
I didn't realize there was a
yieldin there, maybe its something in my code.@tzapu commented on GitHub (Dec 22, 2015):
you may wanna try with delay(0) in the library instead of yield... there s been some discussions i ve seen some time ago that it improved things in some library ...
if you see them loading slowly on your screen, it i think it means the data is being sent very slowly. are you far from the esp? Does your firmware have some other loops/timers in parallel ?
cheers
@tablatronix commented on GitHub (Dec 22, 2015):
Im sure its another delay blocking. I have a button library scanning for button presses I recently added.
Works fast when I commented out the yield.
( hehe, I think the scheduler library still says beta.)
@tzapu commented on GitHub (Dec 23, 2015):
does it work any better with delay(0) instead of the yield()?
@tablatronix commented on GitHub (Dec 23, 2015):
It sees to have resolved itself, if it comes up again I will check.
Not sure what changed.
@tzapu commented on GitHub (Dec 27, 2015):
could you tell me if you were connecting to the esp from a mobile device or a computer/laptop?
@tablatronix commented on GitHub (Dec 27, 2015):
IPHONE with serial monitor running on pc
I do not recall if I started using the esp8266 git version before or after, so that might have fixed it.
@tzapu commented on GitHub (Jan 4, 2016):
i ll close this. feel free to reopen it if you run into that again
thanks