mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #291] Newbie issue I hope. #241
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#241
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 @zmeu1975 on GitHub (Jan 11, 2017).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/291
I have been writing some code for the esp8266 but it was messy so I decided to use your WiFi manager library. It run through the autoconect and connected to my WiFi router. It gave me the IP 192.168.8.104. But when I connect to that it says page can not be displayed. I tried to ping it but nothing. OK I thought and went back to my original working but messy sketch and now that say the same thing too.
I then uploaded the example webserver for the ESP and again the same result. What am I missing?
@tzapu commented on GitHub (Jan 12, 2017):
hi, you might have some flash corruption although i haven t seen that ip pop up until now
try a WiFi.disconnect()
you might also try flash erase config from the sdk
check kentaylor's flash erase and see if it helps
cheers
@scropion86 commented on GitHub (Jan 12, 2017):
@zmeu1975 here is how to erase the flash
@zmeu1975 commented on GitHub (Jan 13, 2017):
@scropion86 Thank you for that. However every time run it it stack dumps at address 64.
j = 63
addressSucceed: 258048 - 0x3f000
Exception (0):
epc1=0x40210818 epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000000 depc=0x00000000
ctx: sys
sp: 3ffffca0 end: 3fffffb0 offset: 01a0
@zmeu1975 commented on GitHub (Jan 13, 2017):
Thank you guys. Although that did not work it did set me on the right track. In the end I used the esptool to erase the firmware. All working now.
esptool.py --port /dev/ttyUSB1 erase_flash
@scropion86 @tzapu