I have tried to get my code on an Argon to run, however, I can’t get any output voltage on a pin even with the following code:
SYSTEM_MODE(SEMI_AUTOMATIC);
void setup() {
WiFi.off();
pinMode(D5, OUTPUT);
}
void loop() {
digitalWrite(D5, HIGH);
delay(200);
}
From my reading, using the SYSTEM_MODE(SEMI_AUTOMATIC) with WiFI.off with allow the code in the loop() function to run without the device being connected to the internet. Instead, I get a slow blink/glowing green light on the Argon, and the device does not seem to run the code in the loop() function. I have even tried different pins, and outputting something to Serial to see if I could get feedback that the device is running the code to no avail.
Any suggestions?