Hi, all,
I just purchased an Arduino Yun from Amazon. I can provision the board to my home AP and reset Wi-Fi when bridge is not used in my Arduino project. If I run something like:
#include <Bridge.h>
void setup(void) {
pinMode(13, OUTPUT);
digitalWrite(13, LOW);
Bridge.begin();
digitalWrite(13, HIGH);
}
void loop(void) {
Bridge.put("sensors", "Bad");
delay(1000);
}
When I pressed the Wi-Fi reset button for 10 sec and released, the Wi-Fi was down good. The Arduino Yun AP showed up only after I power cycled the board. Similarly, after I provided my AP info on the Arduino configuration page and triggered a restart, the Yun module also hanged and required a power cycle.
If I removed anything related to the Bridge, then the Wi-Fi reset and the provisioning work just fine. I am very puzzled what causes the above issues with using the bridge.
Can anyone kindly give me some help? Thanks a lot!
Jingzhao