Minimales ESP8266 WLAN-Beispiel
English
Deutsch
example-1.txt
#include <ESP8266WiFi.h>
void setup() {
Serial.begin(115200);
WiFi.begin("MySSID", "MyPassword");
while (WiFi.status() != WL_CONNECTED) {
Serial.println("Wifi connecting...");
delay(500);
}
Serial.println("Wifi connected");
}
void loop() {
// Platzieren Sie hier Ihren Hauptcode, der wiederholt ausgeführt wird:
}Check out similar posts by category:
C/C++, ESP8266/ESP32
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow