settings überarbeitet
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
#include <Arduino.h>
|
||||
#ifndef SETTINGS_H
|
||||
#define SETTINGS_H
|
||||
|
||||
@@ -21,21 +20,31 @@ const char* passwordList[] = {
|
||||
// Weitere Passwörter hier hinzufügen
|
||||
};
|
||||
|
||||
// ####################### Tasmota IPs ########################
|
||||
// ################## Tasmota Einstellungen ###################
|
||||
|
||||
String ip_netzbezug = "192.168.178.236";
|
||||
String ip_erzeugung = "192.168.178.237";
|
||||
// Zwischenstecker am Balkonkraftwerk
|
||||
String tasmota_plug_ip = "192.168.178.222";
|
||||
String tasmota_plug_json_prefix_power = "Power";
|
||||
|
||||
// ################ SmartMeterReader Script ###################
|
||||
// <jsonPrefix> aus dem SmartMeterReader Script
|
||||
// Beispiel: 1,1-0:1.8.0*255(@1,Verbrauch,kWh,E_in_180,3
|
||||
// json_prefix_1_8_0 = E_in_180
|
||||
// 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";
|
||||
|
||||
String json_prefix_Power = "Power";
|
||||
String json_prefix_1_8_0 = "E_in_180";
|
||||
String json_prefix_1_8_1 = "E_in_181";
|
||||
String json_prefix_1_8_2 = "E_in_182";
|
||||
String 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;
|
||||
|
||||
|
||||
// ############################################################
|
||||
|
||||
Reference in New Issue
Block a user