readme
This commit is contained in:
30
README.md
30
README.md
@@ -27,7 +27,7 @@ Passe die `settings.h` auf deine Bedürfnisse an
|
||||
```cpp
|
||||
// ######################## WLAN-Daten ########################
|
||||
|
||||
const char* hostname = "ESP32_WLAN_Test";
|
||||
const char* hostname = "ESP8266_Energiemeter";
|
||||
|
||||
const char* ssidList[] = {
|
||||
"SSID_1", // Netzwerk 1
|
||||
@@ -43,10 +43,32 @@ const char* passwordList[] = {
|
||||
// Weitere Passwörter hier hinzufügen
|
||||
};
|
||||
|
||||
// ####################### Tasmota IPs ########################
|
||||
// ################## Tasmota Einstellungen ###################
|
||||
|
||||
// Zwischenstecker am Balkonkraftwerk
|
||||
String tasmota_plug_ip = "192.168.178.222";
|
||||
String tasmota_plug_json_prefix_power = "Power";
|
||||
|
||||
// SmartMeterReader
|
||||
String tasmota_smr_ip = "192.168.178.236";
|
||||
String tasmota_smr_json_prefix_power = "Power";
|
||||
String tasmota_smr_json_prefix_1_8_0 = "E_in_180";
|
||||
String tasmota_smr_json_prefix_1_8_1 = "E_in_181";
|
||||
String tasmota_smr_json_prefix_1_8_2 = "E_in_182";
|
||||
String tasmota_smr_json_prefix_2_8_0 = "E_in_280";
|
||||
|
||||
// Anzahl Nachkommastellen bei den ausgelesenen Tasmota Werten
|
||||
// -1 = Alle / 0 = Keine / 2 = 2 Nachkommastellen
|
||||
int tasmota_decimalplaces = 2;
|
||||
|
||||
// ################# Allgemeine Einstellungen #################
|
||||
|
||||
// Aktualisierungsrate im Bildschirm aktuelle Leistung (in Millisekunden)
|
||||
unsigned long refreshrate_power = 2500;
|
||||
|
||||
// Aktualisierungsrate in den Bildschirmen der Verbrauchsdaten (in Millisekunden)
|
||||
unsigned long refreshrate_consumption = 15000;
|
||||
|
||||
String ip_netzbezug = "192.168.178.236";
|
||||
String ip_erzeugung = "192.168.178.237";
|
||||
|
||||
// ############################################################
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user