Difference between revisions of "Smart electronics"

From Interaction Station Wiki
Jump to navigation Jump to search
Line 7: Line 7:
 
== Helper functions ==  
 
== Helper functions ==  
  
Connect to WiFI
+
=== Connect to WiFI ===
 +
 
 
<syntaxhighlight lang="cpp">
 
<syntaxhighlight lang="cpp">
 
void connectWifi() {
 
void connectWifi() {

Revision as of 21:35, 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);
}