Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

By occam
#44092 I've had an application that connect to my AP that's been working for months. It now fails with WDT timeout while connecting to the AP.

The module WiFi seems to be working because I can scan for active APs.

In the following code the app hangs in the call to WiFi.status() then the WDT resets. The progress indicator shows four "." at .5 sec interval then hangs followed by the WDT timeout.

The login to the AP is confirmed as working.

Using Huzzah ESP8266 Breakout

Any ideas ??

Serial.print("Connecting to : ");

WiFi.begin(ssid, password);

int v = 0;
while (WiFi.status() != WL_CONNECTED && (v++ <20))
{
delay(500);
Serial.print(".")
}
By occam
#44110 I loaded up a couple examples ... that always hang at the WiFi.status() call and I get WDT timeout.

I suspect some type of hardware problem as this code ran for a long time without a problem. If that's the case then this will be the second Huzzah that died after short time. I'm beginning to think that these ESP8266 devices are crap. A good idea cheaply and poorly implemented. Are there any quality non-Chinese made ESP8266 modules? I suspect the flash. That's what failed in the first one that died on me. I'm willing to pay a few dollars more for something that doesn't use crap knock-off parts.
By occam
#44753
martinayotte wrote:I would suspect power supply issue.


I'm feeding the Huzzah from 6 VDC 2A switching power supply.
I put the 3.3V on the scope and there is about 50 mv of ripple, but no dropouts or glitches.
Like I said this was running fine for a couple of months 24x7.

Consistent WDT resets during the call to WiFi.status()