mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #822] Configuration Portal does not load #689
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#689
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 @DeltaVetal26 on GitHub (Feb 7, 2019).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/822
Hardware
WiFimanager Branch/Release:
Esp8266/Esp32:
**Hardware:
ESP32 Dev Module
ESP Core Version: 2.4.0, staging
Description
I'm trying to check the WifiManager on my ESP32 card. I loaded an example, but the configuration portal does not want to run. In the list of Wifi networks, I also do not see my fee.
Sketch
Debug Messages
@DeltaVetal26 commented on GitHub (Feb 8, 2019):
Does anyone have any idea?
@tablatronix commented on GitHub (Feb 8, 2019):
use a basic example and post logs?
@codebeat-nl commented on GitHub (Feb 8, 2019):
Had the same problem.
Found this: https://www.esp8266.com/viewtopic.php?f=6&t=15993
This post of eduperez:
"Android devices have the Google DNSs hard-coded, they will always use 8.8.8.8 and 8.8.4.4, despite what the DHPC server might tell them to use. You need to configure your gateway to redirect all outgoing traffic to port 53 to your DNS."
That gives the idea, use 8.8.8.8 as IP-address and as DNS-server address.
Tada! Works like a charm!
So this demo sketch provided/included at ESP library will work:
@DeltaVetal26 commented on GitHub (Feb 9, 2019):
@tablatronix
I found the Basic example, installed it. But nothing has changed. The access point is also not created.
@DeltaVetal26 commented on GitHub (Feb 9, 2019):
@codebeat-nl
I'm trying to find an ESP network through an iPhone and a laptop (HP, Windows 10), but nowhere to see the ESP32 access point.
@tablatronix commented on GitHub (Feb 9, 2019):
you have not posted logs of the basic example serial output. you just posted the same thing as before, and some brownout code ? Are you using esp32 staging?
@DeltaVetal26 commented on GitHub (Feb 9, 2019):
@tablatronix
I am using ESP32 DEV Module V1.
In this example, I apply a setting that disables the low voltage detector. Without this, my board will reboot indefinitely if I use the USB port of my computer. But this is clearly not the case, since I connected the board to a good power source, but nothing works there either.
The serial port displays only this information, nothing else.
@tablatronix commented on GitHub (Feb 9, 2019):
well I was assuming it was your code that was breaking it, but no serial output ? That is strange.
I am at a loss, there should be something
no reset?
I mean wiifi wont start if chip is browing out, or less than 200ma, but it should throw logs..
@DeltaVetal26 commented on GitHub (Feb 10, 2019):
@tablatronix
Is it possible to somehow enable the expanded log?
@tablatronix commented on GitHub (Feb 10, 2019):
Its on full by default
@DeltaVetal26 commented on GitHub (Feb 11, 2019):
@tablatronix
Happened! The problem is solved by thoroughly cleaning the flash with esptool.py.
@tablatronix commented on GitHub (Feb 11, 2019):
very odd, I would have expected some kind of crash or reboot in serial log.
Glad you got it fixed, can it be closed?
@giulicrenna commented on GitHub (Aug 30, 2022):
I had the same problem, my solution was because I over included the ESP8266WiFi.h in some part of the code.
@tablatronix commented on GitHub (Aug 31, 2022):
#1482
@mheig commented on GitHub (May 5, 2024):
Hi! How did you do that?