Just trying to figure why this is happening…
Issue:
Rapid blue flashing status LED, for a few seconds, Browser console.particle.io/events shows disconnect and reconnectwithin a few seconds. Sometimes there is a brief red (purple-ish?) flash of the LED before it goes back to breathing blue.
There appears to be no pattern to the disconnect. Today the disconnect was:
10:32am, 11:40am, 3:21pm, 4:52pm, 5:05pm, 5:23pm, 5:25pm. Its usually a bit worse that this in an 8 hour period.
Setup:
Photon with external aerial. Good Wifi to Photon, nothing else on the channel/band Photon is using.
firmware 0.6.2
Code:
Using a timer to send the RSSI every second to a terminal on my mac via USB. Like this:
STARTUP(WiFi.selectAntenna(ANT_EXTERNAL)); // selects the u.FL antenna
void printInfo()
{
if ( WiFi.ready() ) ( Serial.println( WiFi.RSSI()) );
}
Timer timer(1000, printInfo);
void setup()
{
Serial.begin(9600);
timer.start();
}
void loop()
{
}
TIA