Difference between revisions of "Smart electronics"
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
Connect to WiFI | Connect to WiFI | ||
− | < | + | <syntaxhighlight lang="cpp"> |
void connectWifi() { | void connectWifi() { | ||
Serial.print("Connecting to wifi..."); | Serial.print("Connecting to wifi..."); | ||
Line 18: | Line 18: | ||
delay(1000); | delay(1000); | ||
} | } | ||
− | </ | + | </syntaxhighlight> |
Revision as of 21:34, 3 November 2024
ESP Board manager
https://espressif.github.io/arduino-esp32/package_esp32_index.json
Helper functions
Connect to WiFI
void connectWifi() {
Serial.print("Connecting to wifi...");
while (WiFi.status() != WL_CONNECTED) {
Serial.print(".");
delay(1000);
}
Serial.println("\nWifi connected!");
delay(1000);
}