We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf2c4bb commit d8edd31Copy full SHA for d8edd31
src/networkId.cpp
@@ -18,6 +18,7 @@ bool networkId::begin() {
18
defined(ARDUINO_UNOR4_WIFI)
19
WiFi.setTimeout(0);
20
int result = WiFi.begin("In33dm4c4ddr35", "In33dm4c4ddr35");
21
+ WiFi.setTimeout(10000);
22
return (result != WL_NO_SHIELD) ? true : false;
23
#elif defined(ARDUINO_PORTENTA_C33)
24
return true;
@@ -33,6 +34,7 @@ bool networkId::begin() {
33
34
defined(ARDUINO_GIGA)
35
36
int result = WiFi.begin("In33dm4c4ddr35", "In33dm4c4ddr35", ENC_TYPE_TKIP);
37
38
return ( result != WL_NO_SHIELD) ? true : false;
39
#elif defined(ARDUINO_OPTA)
40
Ethernet.begin(NULL, 0, 0);
0 commit comments