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 7df080e commit bedcbf5Copy full SHA for bedcbf5
libraries/WiFi/src/WiFiClass.h
@@ -86,6 +86,9 @@ class WiFiClass {
86
int begin(const char* ssid, const char *passphrase);
87
88
bool connected();
89
+ bool isConnected() {
90
+ return connected();
91
+ }
92
int8_t waitForConnectResult(unsigned long timeoutLength = 60000) {
93
uint32_t now = millis();
94
while (millis() - now < timeoutLength) {
0 commit comments