Skip to content

WiFi issue - Devices sometimes not respond #2454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
asetyde opened this issue Feb 13, 2019 · 0 comments
Closed

WiFi issue - Devices sometimes not respond #2454

asetyde opened this issue Feb 13, 2019 · 0 comments

Comments

@asetyde
Copy link

asetyde commented Feb 13, 2019

Hardware:

Board: ESP32 DevKit only module
Core Installation version: 1.0.1
IDE name: Arduino IDE - visualmicro on Visualstudio17
Flash Frequency: 80Mhz wifi/bt
PSRAM enabled: no
Upload Speed: 115200
Computer OS: Windows 10

Description:

I test on 30 devices every time on stable wifi , I use this routine to set wifi :

	WiFi.mode(WIFI_STA);
	WiFi.setHostname(memory.arduinoName);
	WiFi.begin();
	WiFi.setSleep(false);
	while (WiFi.status() != WL_CONNECTED)
	{
		counter++;
		delay(500); wdtreset();
		Serial.print("@");
		if (counter > 10)
		{
			failwifi = true;
			break;
		}
	}
WiFi.setAutoReconnect(true);

But nothing preserve from sometimes disconnection and WiFi.status() as flag , I think not work, if no solution I must use polling check system but is absurd
I think is link with #1464 issue

@asetyde asetyde closed this as completed Jun 27, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant