So I’ve tried for hours to figure this out, but I can’t even get this thing to connect to a open network using code.
Here is what I do:
setup argon to connect to wifi using doctor tool
use webide to program unit
use serial to run WiFi.clearCredentials();
argon stays connected until restarted
use serial to restart unit
argon is now disconnected
use serial to set ssid var
use serial to save new ssid WiFi.setCredentials(ssid);
still not connected
use serial to run WiFi.connect();
still not connected
use serial to restart argon
still will not connect.
What is going on with this?
I can even verify my commands are working by not clearing creds and running all the same commands. I use serial to print ssid var and WiFi.SSID() but it will not change WiFi.SSID().
// Connects to an unsecured network.
WiFi.setCredentials(ssid);
WiFi.setCredentials(“My_Router_Is_Big”);
// Connects to a network secured with WPA2 credentials.
WiFi.setCredentials(ssid, password);
WiFi.setCredentials(“My_Router”, “mypasswordishuge”);
// Connects to a network with a specified authentication procedure.
// Options are WPA2, WPA, or WEP.
WiFi.setCredentials(ssid, password, auth);
WiFi.setCredentials(“My_Router”, “wepistheworst”, WEP);
Also the Argon can’t connect a Wi-Fi network with a hidden SSID. Since it worked from web device doctor, that’s presumably not the case, but I thought I’d mention it just in case.
By the way, if you’re really setting the Wi-Fi credentials from USB serial, and the device is in listening mode (blinking dark blue), you don’t need custom firmware. Connect to the device by USB serial and send it the w character. This will enter remote Wi-Fi set up mode and you can just wait for the prompt then send the next thing that’s requested. That’s how the Particle CLI sets Wi-Fi on the Argon using particle serial wifi.
Make sure you’re not writing to USB serial using Serial.print or the SerialLogHandler when in listening mode from your firmware. It will interfere with listening mode commands such as particle serial wifi.
all data goes to this function. I tried doing it all in one command using Scanff but I get a blinky red light. So I broke each var out and did each command separately. Still doesn’t connect.