mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #151] AutoConnectWithFSParameters #116
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#116
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 @kiralikbeyin on GitHub (Apr 6, 2016).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/151
Hi,
I am trying AutoConnectWithFSParameters example but i got these ;
nodemcu1.0 - 1.6.8 and stable esp 2.1
mounting FS...
ets Jan 8 2013,rst cause:4, boot mode:(3,6)
wdt reset
load 0x4010f000, len 1264, room 16
tail 0
chksum 0x42
csum 0x42
~ld
mounting FS...
Exception (9):
epc1=0x4022e03f epc2=0x00000000 epc3=0x00000000 excvaddr=0x401057a3 depc=0x00000000
ctx: sys
sp: 3fff0160 end: 3fffffb0 offset: 01a0
@tzapu commented on GitHub (Apr 6, 2016):
try a SPIFFS.format before begin
make sure the FS include is the first one on top of everything else
make sure you set the proper SPIFFS size and memory size for your module
hope it helps
@kiralikbeyin commented on GitHub (Apr 6, 2016):
I tried this sketch and it didn't work.
Maybe a FS problem not related with your lib.
@thoralt commented on GitHub (Apr 14, 2016):
You're not opening the file in read mode, but write mode instead. Use
"r"as second parameter toopen().