-
-
Notifications
You must be signed in to change notification settings - Fork 195
Description
PROBLEM DESCRIPTION
A clear and concise description of what the problem is.
I use two Panels with NSPanel Addon on Homeassistant. The MQTT Connection works correctly. The commands will set and the console in Tasmota shows the commands. The display shows the Entities after a long delay or not complete. After double tap I see the Power Card. There is a speed configured but it won't move. The QR code will only shown with a blank field. Sometimes I get no reaction for a long time. After Restart it works.
I used the Panel on Iobroker with Tasmota. There it works perfekt.
REQUESTED INFORMATION
Make sure your have performed every step and checked the applicable boxes before submitting your issue. Thank you!
- Provide your apps.yaml (or your config):
- [ ]
apps.yaml here:
#----------------NSPanel Büro-------------------------
nspanels:
nspanel-ug:
panelRecvTopic: "Sonoff/tele/NSPanelUG/RESULT"
panelSendTopic: "Sonoff/cmnd/NSPanelUG/CustomSend"
#----------------Globale Konfiguration---------------
sleepTimeout: 30
sleepBrightness: 10
locale: "de_DE"
timeZone: "Europe/Berlin"
dateFormat: "full"
timeFormat: "%H:%M"
#-----------------Screensaver------------------------
screensaver:
type: screensaver2
#statusIcon1:
# entity: switch.example_item
entities:
# Wetter
- entity: weather.forecast_home
# Entities 1-3 vertikal
- entity: sensor.senec_house_power
icon: mdi:home-variant-outline
color: 'ha:{{iif(states("sensor.senec_house_power")>"0", "[255,0,0]", "[0,255,0]")}}'
- entity: sensor.kostal_piko_grid_output_power
icon: mdi:solar-power
color: 'ha:{{iif(states("sensor.kostal_piko_grid_output_power")>"0", "[255,255,0]", "[255,0,0]")}}'
- entity: sensor.senec_battery_charge_percent
color: 'ha:{{iif(states("sensor.senec_battery_charge_percent")>"0", "[0,255,0]", "[255,0,0]")}}'
icon: 'ha:{{iif(states("sensor.senec_battery_charge_percent")>"0", "<I>mdi:battery-40</I>", "<I>mdi:battery-off-outline</I>")}}'
# Entities 1-6 horizontal
# - entity: sensor.sun_next_rising
# value: 'ha:{{ as_timestamp(states.sun.sun.attributes.next_rising) | timestamp_custom(" %H:%M ") | replace(" 0", "") }}'
# icon: mdi:weather-sunset-up
# color: [255, 255, 0]
# name: Sonne
# - entity: sensor.sun_next_setting
# value: 'ha:{{ as_timestamp(states.sun.sun.attributes.next_setting) | timestamp_custom(" %H:%M ") | replace(" 0", "") }}'
# icon: mdi:weather-sunset-down
# color: [255, 165, 0]
# name: Sonne
# - entity: weather.forecast_home
# attr: wind_speed
# name: Wind
# icon: mdi:windsock
# color: [0, 0, 255]
# - entity: weather.forecast_home
# attr: cloud_coverage
# name: Wolken
# icon: mdi:cloud-outline
# color: [0, 0, 255]
# - entity: weather.forecast_home
# attr: humidity
# name: Feuchte
# icon: mdi:cloud-percent-outline
# color: [0, 0, 255]
# - entity: sensor.dwd_weather_warnings_kreis_lichtenfels_aktuelle_warnstufe
# name: DWD
# icon: mdi:volcano
# color: [255, 0, 255]
# Indicatoren 1-5 horizontal
# - entity: switch.power_switch_geschirrspueler
# icon: mdi:dishwasher
# color:
# "on": [255, 255, 0]
# "off": [255, 0, 0]
# - entity: switch.power_switch_backofen
# icon: mdi:stove
# color:
# "on": [255, 255, 0]
# "off": [255, 0, 0]
# - entity: switch.power_switch_dampfgarer
# icon: mdi:cup-water
# color:
# "on": [255, 255, 0]
# "off": [255, 0, 0]
# - entity: sensor.power_kochfeld
# icon: mdi:pot-steam
# color: 'ha:{{iif(states("sensor.power_kochfeld") >"5", "[255,0,0]", "[165,165,165]")}}'
# - entity: binary_sensor.senec_sockets_1_power_on
# icon:
# "on": mdi:water-boiler
# "off": mdi:water-boiler-off
# color: 'ha:{{iif(states("sensor.power_heisswasserspeicher") >"5", "[255,0,0]", "[165,165,165]")}}'
#----------------Karten Konfiguration----------------
cards:
# Main Page
- type: cardPower
title: Leistungsdaten
entities:
- entity: sensor.kostal_piko_yield_day
icon: mdi:solar-panel
color: [255, 255, 0]
name: 'd'
- entity: delete
- entity: sensor.kostal_piko_grid_output_power
icon: mdi:solar-panel
color: 'ha:{{iif(states("sensor.kostal_piko_grid_output_power") >"5", "[255,255,0]", "[255,0,0]")}}'
speed: 'ha:{{iif(states("sensor.kostal_piko_grid_output_power") >"5", 20, 0)}}'
- entity: sensor.senec_battery_charge_percent
icon: mdi:battery-40
color: 'ha:{{iif(states("sensor.senec_battery_charge_percent") >"10", "[0,255,0]", "[255,0,0]")}}'
- entity: sensor.senec_battery_state_power
icon: mdi:battery-arrow-up
color: 'ha:{{iif(states("sensor.senec_battery_state_power") >"0", "[165,165,165]", "[238,130,238]")}}'
speed: 'ha:{{iif(states("sensor.senec_battery_state_power") >"0", -20, 20)}}'
- entity: sensor.senec_house_power
icon: mdi:home
color: [255,0,0]
speed: 100
- entity: sensor.senec_grid_state_power
icon: mdi:transmission-tower
color: 'ha:{{iif(states("sensor.senec_grid_state_power") <"0", "[165,165,165]", "[238,130,238]")}}'
speed: 'ha:{{iif(states("sensor.senec_grid_state_power") <"0", 20, -20)}}'
- type: cardQR
title: Gast WLAN
qrCode: "WIFI:S:{{states('input_text.gast_name')}};T:WPA;P:{{states('input_text.gast_passwort')}};;"
entities:
- entity: input_text.gast_name
name: Name
icon: mdi:wifi
- entity: input_text.gast_passwort
name: Passwort
icon: mdi:key
#----------------NSPanel Büro-------------------------
- Go to Settings>Add-ons>AppDaemon>Log (or the output of your TS script) and then, provide the output of the log during your issue/bug occurs:
Log output here:
`DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2674.85 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.2 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2670.92 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.2 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2673.1 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.2 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2662.06 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.2 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2662.06 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.18 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2670.46 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.18 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2675.39 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.18 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2670.61 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.18 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): time~16:58~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2670.61 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.15 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2672.43 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.15 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2719.75 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.15 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2659.89 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.15 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2659.89 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.1 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2674.9 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.1 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,buttonPress2,screensaver,bExit,1
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): pageType~cardPower
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,renderCurrentPage
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.1 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2674.9 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-428.5 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.1 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2687.69 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-406.71 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.1 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2687.69 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-406.71 W~0
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,buttonPress2,navigate.2dIz32XCnb,button
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): pageType~cardQR
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,renderCurrentPage
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Gast WLAN~button~navigate.S1daU48HWx~~65535~Leistungsdaten~Drücken~button~navigate.S1daU48HWx~~65535~Leistungsdaten~Drücken~WIFI:S:{{states('input_text.gast_name')}};T:WPA;P:{{states('input_text.gast_passwort')}};;~text~iid.GxE6lbyPWz~~17299~Name~Gasthaus zum taenzelnden Pony~text~iid.d1OGURfFPb~~17299~Passwort~Guest_SSID_Pony
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,buttonPress2,navigate.S1daU48HWx,button
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): pageType~cardPower
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,renderCurrentPage
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.1 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2667.84 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-411.56 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): time~16:59~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.08 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2667.84 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-411.56 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.08 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2674.26 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-410.14 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.08 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2674.26 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-410.14 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.08 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2691.21 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-372.19 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.08 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2691.21 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-372.19 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.08 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2684.52 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-370.88 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.08 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2684.52 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-370.88 W~0
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,sleepReached,cardAlarm
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): pageType~screensaver2
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,renderCurrentPage
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2684.52 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.08 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,buttonPress2,screensaver,bExit,1
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): pageType~cardPower
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,renderCurrentPage
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.08 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2684.52 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-370.88 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.63 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.03 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2684.52 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-370.88 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.68 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.03 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2684.52 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-370.88 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.68 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.03 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2664.93 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-365.47 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.68 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.03 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2664.93 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-365.47 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.68 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.03 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2683.36 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-348.04 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.68 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.03 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2683.36 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-348.04 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.68 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.03 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2682.6 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-313.8 W~0
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): entityUpd~Leistungsdaten~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~button~navigate.2dIz32XCnb~~65535~Gast WLAN~Drücken~text~iid.7EdyiZSaHi~~65504~d~76.68 kWh~0~delete~~~~~~0~text~iid.NmT7F0iC4n~~63488~Kostal PIKO Grid Output Power~3.03 kW~0~text~iid.XgEgTMLA15~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %~0~text~iid.8fPVxjkuyo~~60445~SENEC Main-Unit: senec Aktuelle Akku Leistung~-6.4 W~0~text~iid.cXCRbaav9d~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2682.6 W~0~text~iid.N9DqFAqXLu~~42292~SENEC Main-Unit: senec Aktuelle Netz Leistung~-313.8 W~0
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,sleepReached,cardAlarm
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): pageType~screensaver2
DEBUG:root:Recv Message from NsPanel (nspanel-ug): event,renderCurrentPage
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2682.6 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~3.03 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): date~Dienstag, 23. April 2024
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): time~17:00~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2682.6 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.99 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2699.09 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.99 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2666.9 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.99 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2638.67 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.99 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2638.67 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.94 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2664.09 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.94 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~2747.16 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.94 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~893.04 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.94 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): time~17:01~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~893.04 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.88 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~856.78 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.88 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~885.32 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.88 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): weatherUpdate~text~iid.A2gdrk8WVL~~38066~Forecast Home~8.4°C~text~iid.YslCv8M0DF~~63488~SENEC Main-Unit: senec Aktueller Hausverbrauch~883.3 W~text~iid.084jNomhTh~~65504~Kostal PIKO Grid Output Power~2.88 kW~text~iid.TK74orq5zo~~2016~SENEC Main-Unit: senec Akku-Füllstand in Prozent~70.0 %
DEBUG:root:Sent Message to NsPanel (Sonoff/cmnd/NSPanelUG/CustomSend): statusUpdate~~~~~~`
TO REPRODUCE
Steps to reproduce the behavior:
Installed Addon in Homeassistant
Installed Tasmota
Installed Berry Driver
Installed Nextion
Configured MQTT Connection
Configured panels.yaml
EXPECTED BEHAVIOUR
A clear and concise description of what you expected to happen.
I need support what the problem is.
SCREENSHOTS
If applicable, add screenshots/pictures to help explain your problem.
ADDITIONAL CONTEXT
Add any other context about the problem here.
Please note here in case you are using ioBroker
PANEL / FIRMWARE VERSION
Please add the Panel/Firmware Version you are using (EU, US-L or US-P)
EU, Tasmota 13.4.0