Initial commit

This commit is contained in:
2024-12-21 20:33:38 +01:00
commit 8277a07417
12 changed files with 515 additions and 0 deletions

31
src/settings.h Normal file
View File

@@ -0,0 +1,31 @@
#include <Arduino.h>
#ifndef SETTINGS_H
#define SETTINGS_H
// ######################## WLAN-Daten ########################
const char* hostname = "ESP8266_Energiemeter";
const char* ssidList[] = {
"SSID_1", // Netzwerk 1
"SSID_2", // Netzwerk 2
"SSID_3" // Netzwerk 3
// Weitere SSID hier hinzufügen
};
const char* passwordList[] = {
"Passwort_1", // Passwort für SSID 1
"Passwort_2", // Passwort für SSID 2
"Passwort_3" // Passwort für SSID 3
// Weitere Passwörter hier hinzufügen
};
// ####################### Tasmota IPs ########################
String ip_netzbezug = "192.168.178.236";
String ip_erzeugung = "192.168.178.237";
// ############################################################
#endif // SETTINGS_H