Latest released version does not work for me in OH5.0.3 and M3:
Error while starting bundle: file:/usr/share/openhab/addons/no.seime.openhab.binding.esphome-4.1.0-SNAPSHOT.jar
Latest released version does not work for me in OH5.0.3 and M3:
Error while starting bundle: file:/usr/share/openhab/addons/no.seime.openhab.binding.esphome-4.1.0-SNAPSHOT.jar
See new note on Bluetooth binding in the original post. I’d you already have it installed, please provide more detailed logs.
Brg
Argghh did not see that. All good now. Thanks!
After upgrading from 5.0.0 to 5.0.3 the ESPHome Binding doesn’t work any more. The native gives an error and alsoo the latest snapshot gives an error.
The Items don’t have the handler. What did I do wrong?
2025-12-07 11:05:09.971 [WARN ] [org.apache.felix.fileinstall ] - Error while starting bundle: file:/usr/share/openhab/addons/no.seime.openhab.binding.esphome-4.1.0-SNAPSHOT.jar
org.osgi.framework.BundleException: Could not resolve module: no.seime.openhab.binding.esphome [394]
Unresolved requirement: Import-Package: org.openhab.binding.bluetooth
at org.eclipse.osgi.container.Module.start(Module.java:463) ~[org.eclipse.osgi-3.18.0.jar:?]
at org.eclipse.osgi.internal.framework.EquinoxBundle.start(EquinoxBundle.java:445) ~[org.eclipse.osgi-3.18.0.jar:?]
at org.apache.felix.fileinstall.internal.DirectoryWatcher.startBundle(DirectoryWatcher.java:1260) [bundleFile:3.7.4]
at org.apache.felix.fileinstall.internal.DirectoryWatcher.startBundles(DirectoryWatcher.java:1233) [bundleFile:3.7.4]
at org.apache.felix.fileinstall.internal.DirectoryWatcher.doProcess(DirectoryWatcher.java:520) [bundleFile:3.7.4]
at org.apache.felix.fileinstall.internal.DirectoryWatcher.process(DirectoryWatcher.java:365) [bundleFile:3.7.4]
at org.apache.felix.fileinstall.internal.DirectoryWatcher.run(DirectoryWatcher.java:316) [bundleFile:3.7.4]
See the last 2 messages in this thread. I also missed that bluetooth binding needs to be installed.
thanks, that did it. I wouldn’t have discovered that myself as a heavy user of esphome.
Hi - i wish everyone a wonderful 2026! I received this morning a Kincony KC868 A8 board, basically an ESP32 device. I flashed the device with the ESP32 firmware and everything is working fine if i control the board from his interface.
My problem is with ESP32 native api, i can’t connect to the esp32 board from openhab. This is the api section of the firmware:
api:
port: 6053
batch_delay: 50ms # Reduce latency for real-time applications
listen_backlog: 2 # Allow 2 pending connections in queue
max_connections: 6 # Allow up to 6 simultaneous connections
max_send_queue: 10 # Maximum queued messages per connection before disconnect
encryption:
key: “_snipped_”
reboot_timeout: 30min
All i can see on the ESP32 logs is that api calls from openhab reach the board, but with error “Reading failed: BAD_INDICATOR errno=11“ - this seems an error related to the encryption key, but i set up both in firmware and in OH thing (and double checked!).
Any suggestion? Thank you
Your config does not look like esphome config. But this does : KinCony KC868-A8 | ESPHome Devices KinCony KC868-A8 | ESPHome Devices
Edit : it is the Api section only as you wrote. Please ude code fences.
Adding encryption key to the config and flashing should make it work I presume.
If not please post complete esphome config as well as trace level logs from the binding.
Brg
Hi Seime - and thanks for helping! So, i tried a new firmware as you wrote - but i’m still stuck… This is the last version i’m using, the KC868 web interface is reachable and control board outputs works, but i still get the “Reading failed: BAD_INDICATOR errno=11“.
Firmware:
# Basic Config
esphome:
name: kc868-a8
esp32:
variant: esp32
i2c:
sda: 4
scl: 5
scan: true
id: bus_a
ethernet:
type: LAN8720
mdc_pin: GPIO23
mdio_pin: GPIO18
clk_mode: GPIO17_OUT
phy_addr: 0
pcf8574:
- id: "pcf8574_hub_out_1" # for output channel 1-8
address: 0x24
- id: "pcf8574_hub_in_1" # for input channel 1-8
address: 0x22
#---------------------------------------------------------------
# Individual outputs
switch:
- platform: gpio
name: "a8-light1"
pin:
pcf8574: pcf8574_hub_out_1
number: 0
mode: OUTPUT
inverted: true
- platform: gpio
name: "a8-light2"
pin:
pcf8574: pcf8574_hub_out_1
number: 1
mode: OUTPUT
inverted: true
- platform: gpio
name: "a8-light3"
pin:
pcf8574: pcf8574_hub_out_1
number: 2
mode: OUTPUT
inverted: true
- platform: gpio
name: "a8-light4"
pin:
pcf8574: pcf8574_hub_out_1
number: 3
mode: OUTPUT
inverted: true
- platform: gpio
name: "a8-light5"
pin:
pcf8574: pcf8574_hub_out_1
number: 4
mode: OUTPUT
inverted: true
- platform: gpio
name: "a8-light6"
pin:
pcf8574: pcf8574_hub_out_1
number: 5
mode: OUTPUT
inverted: true
- platform: gpio
name: "a8-light7"
pin:
pcf8574: pcf8574_hub_out_1
number: 6
mode: OUTPUT
inverted: true
- platform: gpio
name: "a8-light8"
pin:
pcf8574: pcf8574_hub_out_1
number: 7
mode: OUTPUT
inverted: true
binary_sensor:
- platform: gpio
name: "a8-input1"
pin:
pcf8574: pcf8574_hub_in_1
number: 0
mode: INPUT
inverted: true
- platform: gpio
name: "a8-input2"
pin:
pcf8574: pcf8574_hub_in_1
number: 1
mode: INPUT
inverted: true
- platform: gpio
name: "a8-input3"
pin:
pcf8574: pcf8574_hub_in_1
number: 2
mode: INPUT
inverted: true
- platform: gpio
name: "a8-input4"
pin:
pcf8574: pcf8574_hub_in_1
number: 3
mode: INPUT
inverted: true
- platform: gpio
name: "a8-input5"
pin:
pcf8574: pcf8574_hub_in_1
number: 4
mode: INPUT
inverted: true
- platform: gpio
name: "a8-input6"
pin:
pcf8574: pcf8574_hub_in_1
number: 5
mode: INPUT
inverted: true
- platform: gpio
name: "a8-input7"
pin:
pcf8574: pcf8574_hub_in_1
number: 6
mode: INPUT
inverted: true
- platform: gpio
name: "a8-input8"
pin:
pcf8574: pcf8574_hub_in_1
number: 7
mode: INPUT
inverted: true
- platform: gpio
name: "a8-s3"
pin:
number: 32
inverted: true
- platform: gpio
name: "a8-s4"
pin:
number: 33
inverted: true
one_wire:
- platform: gpio
pin: GPIO14
sensor:
- platform: dallas_temp
address: 0x1c0000031edd2a28 #replace with your sensor's ID
name: "ds18b20-1"
#--------------------------------------------------------------------------------
# Enable logging
logger:
# ESPHome Native API (per openHAB binding) - con encryption
api:
port: 6053
encryption:
key: "xtgyM2JVcosOJXsz7JSelGvjpO3YUGMtLurgfrA5KTc="
In the thing config, using openhab 4.3.9, i use this values:
ESPHome device ID: kc868-a8
Hostname <KC868_IP>
port 6053
base64 encoded… xtgyM2JVcosOJXsz7JSelGvjpO3YUGMtLurgfrA5KTc=
As i’m working on a openhab VM (my production OH is another machine), i took a snapshot and upgraded to OH 5.1. Same situation, same error.
Ok found out - firmware i’m uploading is not correctly loaded on the board. So most probably everything is ok on openhab, but not on KC868. Thank you, i’ll post an update once i got something working.
EDIT - Solved, in the end i’ve been able to flash correctly the KC868-a8 and the ESP32 binding worked like a charm. Thanks for helping - and for this great binding too!
After my last upfrade to OH5.1.1 and not forgetting to install and activate the bluetooth binding the connection to my ESPHome device (to read a smart meter) seemed to be back again.
But the system was noticably slower and top showed significant higher system usage.
Checking the logs I got warnings like below and the connection seems to reset once in a while:
flag 13:41:04.970 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: PACKET_ERROR: Error parsing packet. Will reconnect in 20 seconds
flag 13:41:25.737 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:41:57.973 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:42:18.726 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:44:49.232 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:45:09.913 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:45:50.207 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:46:10.905 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:46:41.584 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:47:02.106 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:49:32.617 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:49:53.334 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:50:55.261 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:51:16.192 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:51:25.836 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:51:46.447 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:52:19.682 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:52:40.430 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:52:50.717 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:53:11.401 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:53:31.847 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:53:52.573 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:55:18.047 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:55:38.783 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:55:59.223 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:56:20.060 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:56:29.706 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:56:50.545 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:57:02.264 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:57:22.865 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:57:34.895 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:57:55.685 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:58:05.428 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:58:26.270 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:58:37.318 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
flag 13:58:58.045 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
flag 13:59:06.798 WARN
no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler
[Slimmelezer_ESPHome_Device] Disconnecting. Reason: PACKET_ERROR: Error parsing packet. Will reconnect in 20 seconds
To me this does not yet make sense since I did not get these message before and the set_dsmr_key service ought to be standard for e.g. Luxembourg and Belgium afaik.
My code for the ESPHome device is below. In case I must change it, what needs to be changed to make it work without warnings?:
---
substitutions:
device_name: slimmelezer
device_description: "DIY P1 module to read your smart meter"
esp8266:
restore_from_flash: true
board: d1_mini
esphome:
name: ${device_name}
comment: "${device_description}"
name_add_mac_suffix: false
project:
name: zuidwijk.slimmelezer
version: "1.0"
on_boot:
then:
- if:
condition:
lambda: return id(has_key);
then:
- lambda: |-
std::string key(id(stored_decryption_key), 32);
id(dsmr_instance).set_decryption_key(key);
else:
- logger.log:
level: info
format: "Not using decryption key. If you need to set a key use Home Assistant service 'ESPHome: ${device_name}_set_dsmr_key'"
wifi:
networks:
- ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: ${device_name}
ap_timeout: 15s
captive_portal:
# Enable logging
logger:
baud_rate: 0
# Enable Home Assistant API
api:
services:
service: set_dsmr_key
variables:
private_key: string
then:
- logger.log:
format: Setting private key %s. Set to empty string to disable
args: [private_key.c_str()]
- globals.set:
id: has_key
value: !lambda "return private_key.length() == 32;"
- lambda: |-
if (private_key.length() == 32)
private_key.copy(id(stored_decryption_key), 32);
id(dsmr_instance).set_decryption_key(private_key);
encryption:
key: !secret esphome_api_key
ota:
platform: esphome
web_server:
port: 80
uart:
baud_rate: 115200
rx_pin: D7
globals:
- id: has_key
type: bool
restore_value: yes
initial_value: "false"
- id: stored_decryption_key
type: char[32]
restore_value: yes
dsmr:
id: dsmr_instance
# For Luxembourg users set here your decryption key.
# Enable this when using decryption for Luxembourg;
# key looks like '00112233445566778899AABBCCDDEEFF'
# decryption_key: !secret decryption_key
sensor:
- platform: dsmr
energy_delivered_lux:
name: "Energy Consumed Luxembourg"
state_class: total_increasing
energy_delivered_tariff1:
name: "Energy Consumed Tariff 1"
state_class: total_increasing
energy_delivered_tariff2:
name: "Energy Consumed Tariff 2"
state_class: total_increasing
energy_returned_lux:
name: "Energy Produced Luxembourg"
state_class: total_increasing
energy_returned_tariff1:
name: "Energy Produced Tariff 1"
state_class: total_increasing
energy_returned_tariff2:
name: "Energy Produced Tariff 2"
state_class: total_increasing
power_delivered:
name: "Power Consumed"
accuracy_decimals: 3
power_returned:
name: "Power Produced"
accuracy_decimals: 3
electricity_failures:
name: "Electricity Failures"
icon: mdi:alert
electricity_long_failures:
name: "Long Electricity Failures"
icon: mdi:alert
voltage_l1:
name: "Voltage Phase 1"
voltage_l2:
name: "Voltage Phase 2"
voltage_l3:
name: "Voltage Phase 3"
current_l1:
name: "Current Phase 1"
current_l2:
name: "Current Phase 2"
current_l3:
name: "Current Phase 3"
power_delivered_l1:
name: "Power Consumed Phase 1"
accuracy_decimals: 3
power_delivered_l2:
name: "Power Consumed Phase 2"
accuracy_decimals: 3
power_delivered_l3:
name: "Power Consumed Phase 3"
accuracy_decimals: 3
power_returned_l1:
name: "Power Produced Phase 1"
accuracy_decimals: 3
power_returned_l2:
name: "Power Produced Phase 2"
accuracy_decimals: 3
power_returned_l3:
name: "Power Produced Phase 3"
accuracy_decimals: 3
gas_delivered:
name: "Gas Consumed"
state_class: total_increasing
gas_delivered_be:
name: "Gas Consumed Belgium"
state_class: total_increasing
- platform: uptime
name: "SlimmeLezer Uptime"
- platform: wifi_signal
name: "SlimmeLezer Wi-Fi Signal"
update_interval: 60s
text_sensor:
- platform: dsmr
identification:
name: "DSMR Identification"
p1_version:
name: "DSMR Version"
p1_version_be:
name: "DSMR Version Belgium"
- platform: wifi_info
ip_address:
name: "SlimmeLezer IP Address"
ssid:
name: "SlimmeLezer Wi-Fi SSID"
bssid:
name: "SlimmeLezer Wi-Fi BSSID"
- platform: version
name: "ESPHome Version"
hide_timestamp: true
This one is not to worry about, it just means that the binding doesn’t implement (rule) thing actions just yet.
What does the ESP device log say here? And which version of ESPHome is the device running? Did you try with the latest ESPHome version (and the latest binding version if not already)?
BRG
Thanks for the quick response!
The ESPHome version I used was 2025.10.3 and the binding I am using is the one update at 1 december 2025 01:22.
Using “esphome logs slimmelezer.yaml” I got the log output and the [sensor:131] and [text_sensor:085] messages about every second except when the failure messages come.
Since you mentioned the build version I will try to update and rebuild to see if that improves behavior.
UPDATE:
Sorry it took some effort to uninstall and install the new version and capture the behavior. I rebuild on ESPHome Version: 2025.12.5 had to add a line to make sure my wifi-security was recognised and ended up with the same behavior. The ESP device says:
[18:22:03.271][I][app:194]: ESPHome version 2025.12.5 compiled on Jan 11 2026, 18:14:58
[18:22:03.322][I][app:196]: Project zuidwijk.slimmelezer version 1.0
[18:22:03.322][C][logger:261]: Logger:
[18:22:03.322][C][logger:261]: Max Level: DEBUG
[18:22:03.322][C][logger:261]: Initial Level: DEBUG
[18:22:03.322][C][logger:267]: Log Baud Rate: 0
[18:22:03.322][C][logger:267]: Hardware UART: UART0
[18:22:03.323][C][uart.arduino_esp8266:131]: UART Bus:
[18:22:03.323][C][uart.arduino_esp8266:133]: RX Pin: GPIO13
[18:22:03.323][C][uart.arduino_esp8266:135]: RX Buffer Size: 256
[18:22:03.323][C][uart.arduino_esp8266:137]: Baud Rate: 115200 baud
[18:22:03.323][C][uart.arduino_esp8266:137]: Data Bits: 8
[18:22:03.323][C][uart.arduino_esp8266:137]: Parity: NONE
[18:22:03.323][C][uart.arduino_esp8266:137]: Stop bits: 1
[18:22:03.323][C][uart.arduino_esp8266:144]: Using hardware serial interface.
[18:22:03.323][C][uptime.sensor:017]: Uptime Sensor 'SlimmeLezer Uptime'
[18:22:03.323][C][uptime.sensor:017]: State Class: 'total_increasing'
[18:22:03.323][C][uptime.sensor:017]: Unit of Measurement: 's'
[18:22:03.323][C][uptime.sensor:017]: Accuracy Decimals: 0
[18:22:03.323][C][uptime.sensor:027]: Device Class: 'duration'
[18:22:03.323][C][uptime.sensor:031]: Icon: 'mdi:timer-outline'
[18:22:03.323][C][uptime.sensor:033]: Type: Seconds
[18:22:03.361][C][dsmr:281]: DSMR:
[18:22:03.361][C][dsmr:281]: Max telegram length: 1500
[18:22:03.361][C][dsmr:281]: Receive timeout: 0.2s
[18:22:03.361][C][dsmr:017]: energy_delivered_tariff1 'Energy Consumed Tariff 1'
[18:22:03.361][C][dsmr:017]: State Class: 'total_increasing'
[18:22:03.361][C][dsmr:017]: Unit of Measurement: 'kWh'
[18:22:03.361][C][dsmr:017]: Accuracy Decimals: 3
[18:22:03.361][C][dsmr:027]: Device Class: 'energy'
[18:22:03.362][C][dsmr:017]: energy_delivered_tariff2 'Energy Consumed Tariff 2'
[18:22:03.362][C][dsmr:017]: State Class: 'total_increasing'
[18:22:03.362][C][dsmr:017]: Unit of Measurement: 'kWh'
[18:22:03.362][C][dsmr:017]: Accuracy Decimals: 3
[18:22:03.362][C][dsmr:027]: Device Class: 'energy'
[18:22:03.362][C][dsmr:017]: energy_returned_tariff1 'Energy Produced Tariff 1'
[18:22:03.362][C][dsmr:017]: State Class: 'total_increasing'
[18:22:03.362][C][dsmr:017]: Unit of Measurement: 'kWh'
[18:22:03.362][C][dsmr:017]: Accuracy Decimals: 3
[18:22:03.362][C][dsmr:027]: Device Class: 'energy'
[18:22:03.362][C][dsmr:017]: energy_returned_tariff2 'Energy Produced Tariff 2'
[18:22:03.362][C][dsmr:017]: State Class: 'total_increasing'
[18:22:03.362][C][dsmr:017]: Unit of Measurement: 'kWh'
[18:22:03.362][C][dsmr:017]: Accuracy Decimals: 3
[18:22:03.362][C][dsmr:027]: Device Class: 'energy'
[18:22:03.362][C][dsmr:017]: power_delivered 'Power Consumed'
[18:22:03.362][C][dsmr:017]: State Class: 'measurement'
[18:22:03.362][C][dsmr:017]: Unit of Measurement: 'kW'
[18:22:03.362][C][dsmr:017]: Accuracy Decimals: 3
[18:22:03.362][C][dsmr:027]: Device Class: 'power'
[18:22:03.362][C][dsmr:017]: power_returned 'Power Produced'
[18:22:03.362][C][dsmr:017]: State Class: 'measurement'
[18:22:03.362][C][dsmr:017]: Unit of Measurement: 'kW'
[18:22:03.362][C][dsmr:017]: Accuracy Decimals: 3
[18:22:03.405][C][dsmr:027]: Device Class: 'power'
[18:22:03.405][C][wifi_info:016]: IP Address 'SlimmeLezer IP Address'
[18:22:03.405][C][version.text_sensor:016]: Version Text Sensor 'ESPHome Version'
[18:22:03.406][C][version.text_sensor:023]: Icon: 'mdi:new-box'
[18:22:03.406][C][captive_portal:118]: Captive Portal:
[18:22:03.455][C][wifi:1132]: WiFi:
[18:22:03.455][C][wifi:1132]: Connected: YES
[18:22:03.455][C][wifi:897]: Local MAC: 48:E7:29:78:79:5E
[18:22:03.455][C][wifi:904]: IP Address: 192.168.1.50
[18:22:03.456][C][wifi:908]: SSID: 'MogelijkDeze'
[18:22:03.456][C][wifi:908]: BSSID: 00:11:6B:F5:DD:C9
[18:22:03.456][C][wifi:908]: Hostname: 'slimmelezer'
[18:22:03.456][C][wifi:908]: Signal strength: -64 dB
... skipped lines to keep it readable
[18:22:29.369][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00488 kWh with 3 decimals of accuracy
[18:22:30.194][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:30.194][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:30.194][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:30.194][D][sensor:135]: 'Power Consumed': Sending state 0.42500 kW with 3 decimals of accuracy
[18:22:30.194][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:30.194][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:30.195][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:30.195][D][sensor:135]: 'Voltage Phase 1': Sending state 224.30000 V with 1 decimals of accuracy
[18:22:30.195][D][sensor:135]: 'Voltage Phase 2': Sending state 223.80000 V with 1 decimals of accuracy
[18:22:30.195][D][sensor:135]: 'Voltage Phase 3': Sending state 230.50000 V with 1 decimals of accuracy
[18:22:30.195][D][sensor:135]: 'Current Phase 1': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:31.244][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:31.245][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:31.245][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.19400 kW with 3 decimals of accuracy
[18:22:31.245][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07300 kW with 3 decimals of accuracy
[18:22:31.245][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17200 kW with 3 decimals of accuracy
[18:22:31.245][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:31.245][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:31.245][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:31.245][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:31.245][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:34.457][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:34.457][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00488 kWh with 3 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Power Consumed': Sending state 0.44100 kW with 3 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Voltage Phase 1': Sending state 223.70000 V with 1 decimals of accuracy
[18:22:34.458][D][sensor:135]: 'Voltage Phase 2': Sending state 224.39999 V with 1 decimals of accuracy
[18:22:34.473][D][sensor:135]: 'Voltage Phase 3': Sending state 229.39999 V with 1 decimals of accuracy
[18:22:35.190][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00488 kWh with 3 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Power Consumed': Sending state 0.42400 kW with 3 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Voltage Phase 1': Sending state 224.20000 V with 1 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Voltage Phase 2': Sending state 221.80000 V with 1 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Voltage Phase 3': Sending state 231.50000 V with 1 decimals of accuracy
[18:22:35.191][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:35.193][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:35.193][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:35.193][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17800 kW with 3 decimals of accuracy
[18:22:35.193][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07100 kW with 3 decimals of accuracy
[18:22:35.193][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17200 kW with 3 decimals of accuracy
[18:22:35.193][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:35.194][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:35.194][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:35.194][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:35.194][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:35.241][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:36.160][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00488 kWh with 3 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Power Consumed': Sending state 0.42400 kW with 3 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Voltage Phase 1': Sending state 224.80000 V with 1 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Voltage Phase 2': Sending state 221.70000 V with 1 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Voltage Phase 3': Sending state 231.20000 V with 1 decimals of accuracy
[18:22:36.161][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.18000 kW with 3 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07100 kW with 3 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17100 kW with 3 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:36.162][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:36.162][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:36.210][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:37.158][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00586 kWh with 3 decimals of accuracy
[18:22:37.159][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:37.159][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:37.159][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:37.159][D][sensor:135]: 'Power Consumed': Sending state 0.42300 kW with 3 decimals of accuracy
[18:22:37.159][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:37.159][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:37.159][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:37.159][D][sensor:135]: 'Voltage Phase 1': Sending state 223.39999 V with 1 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Voltage Phase 2': Sending state 222.20000 V with 1 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Voltage Phase 3': Sending state 231.39999 V with 1 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.20600 kW with 3 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07200 kW with 3 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17300 kW with 3 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:37.160][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:37.160][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:37.210][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:39.604][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00586 kWh with 3 decimals of accuracy
[18:22:40.934][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Power Consumed': Sending state 0.45400 kW with 3 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Voltage Phase 1': Sending state 223.50000 V with 1 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Voltage Phase 2': Sending state 222.00000 V with 1 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Voltage Phase 3': Sending state 231.20000 V with 1 decimals of accuracy
[18:22:40.935][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:41.552][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:41.553][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:41.553][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17900 kW with 3 decimals of accuracy
[18:22:41.553][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07200 kW with 3 decimals of accuracy
[18:22:41.553][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17200 kW with 3 decimals of accuracy
[18:22:41.553][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:41.553][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:41.553][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:41.553][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:41.553][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:44.631][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:44.638][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00586 kWh with 3 decimals of accuracy
[18:22:44.639][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00586 kWh with 3 decimals of accuracy
[18:22:44.639][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:44.639][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:44.655][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:45.186][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00684 kWh with 3 decimals of accuracy
[18:22:45.188][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:45.188][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:45.188][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Power Consumed': Sending state 0.42200 kW with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Voltage Phase 1': Sending state 222.89999 V with 1 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Voltage Phase 2': Sending state 223.20000 V with 1 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Voltage Phase 3': Sending state 231.39999 V with 1 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17700 kW with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07100 kW with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17300 kW with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:45.189][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:45.190][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:45.242][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:46.167][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00684 kWh with 3 decimals of accuracy
[18:22:46.167][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:46.167][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Power Consumed': Sending state 0.42300 kW with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Voltage Phase 1': Sending state 223.80000 V with 1 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Voltage Phase 2': Sending state 223.30000 V with 1 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Voltage Phase 3': Sending state 230.10001 V with 1 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17900 kW with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07300 kW with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17300 kW with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:46.168][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:46.169][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:46.169][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:46.224][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:47.190][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00684 kWh with 3 decimals of accuracy
[18:22:47.194][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:47.194][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:47.194][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:47.194][D][sensor:135]: 'Power Consumed': Sending state 0.43000 kW with 3 decimals of accuracy
[18:22:47.194][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:47.194][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:47.194][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:47.194][D][sensor:135]: 'Voltage Phase 1': Sending state 224.30000 V with 1 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Voltage Phase 2': Sending state 222.89999 V with 1 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Voltage Phase 3': Sending state 231.30000 V with 1 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17800 kW with 3 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07200 kW with 3 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17400 kW with 3 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:47.195][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:47.196][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:47.196][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:47.244][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:48.307][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00684 kWh with 3 decimals of accuracy
[18:22:48.311][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:48.311][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:48.311][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:48.311][D][sensor:135]: 'Power Consumed': Sending state 0.42600 kW with 3 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Voltage Phase 1': Sending state 224.70000 V with 1 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Voltage Phase 2': Sending state 222.80000 V with 1 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Voltage Phase 3': Sending state 231.30000 V with 1 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Current Phase 1': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.19100 kW with 3 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07300 kW with 3 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17300 kW with 3 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:48.312][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:48.312][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:48.645][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:56.380][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00684 kWh with 3 decimals of accuracy
[18:22:56.785][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:56.785][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:56.785][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:56.786][D][sensor:135]: 'Power Consumed': Sending state 0.43400 kW with 3 decimals of accuracy
[18:22:56.786][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:56.786][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:56.786][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:56.786][D][sensor:135]: 'Voltage Phase 1': Sending state 224.50000 V with 1 decimals of accuracy
[18:22:56.786][D][sensor:135]: 'Voltage Phase 2': Sending state 220.60001 V with 1 decimals of accuracy
[18:22:56.786][D][sensor:135]: 'Voltage Phase 3': Sending state 231.89999 V with 1 decimals of accuracy
[18:22:56.786][D][sensor:135]: 'Current Phase 1': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:56.830][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:56.830][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:56.830][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.19400 kW with 3 decimals of accuracy
[18:22:56.831][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07100 kW with 3 decimals of accuracy
[18:22:56.831][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17200 kW with 3 decimals of accuracy
[18:22:56.831][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:56.831][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:56.831][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:56.831][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:56.831][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:56.875][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:57.196][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00781 kWh with 3 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Power Consumed': Sending state 0.42100 kW with 3 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Voltage Phase 1': Sending state 224.50000 V with 1 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Voltage Phase 2': Sending state 220.50000 V with 1 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Voltage Phase 3': Sending state 232.00000 V with 1 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.18000 kW with 3 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07000 kW with 3 decimals of accuracy
[18:22:57.197][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17200 kW with 3 decimals of accuracy
[18:22:57.198][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:57.198][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:57.198][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:57.198][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:57.198][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:57.242][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:22:58.178][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00781 kWh with 3 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Power Consumed': Sending state 0.42500 kW with 3 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Voltage Phase 1': Sending state 224.10001 V with 1 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Voltage Phase 2': Sending state 220.70000 V with 1 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Voltage Phase 3': Sending state 231.89999 V with 1 decimals of accuracy
[18:22:58.179][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.18000 kW with 3 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07100 kW with 3 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17300 kW with 3 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:22:58.180][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:22:58.180][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:22:58.224][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:00.701][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00781 kWh with 3 decimals of accuracy
[18:23:02.031][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:02.031][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:02.031][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:02.031][D][sensor:135]: 'Power Consumed': Sending state 0.42500 kW with 3 decimals of accuracy
[18:23:02.031][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:02.032][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:02.032][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:02.032][D][sensor:135]: 'Voltage Phase 1': Sending state 223.10001 V with 1 decimals of accuracy
[18:23:02.032][D][sensor:135]: 'Voltage Phase 2': Sending state 223.30000 V with 1 decimals of accuracy
[18:23:02.032][D][sensor:135]: 'Voltage Phase 3': Sending state 231.30000 V with 1 decimals of accuracy
[18:23:02.032][D][sensor:135]: 'Current Phase 1': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:02.541][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:02.541][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:02.541][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.18900 kW with 3 decimals of accuracy
[18:23:02.542][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07300 kW with 3 decimals of accuracy
[18:23:02.542][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17100 kW with 3 decimals of accuracy
[18:23:02.542][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:02.542][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:02.542][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:02.542][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:02.542][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:05.730][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:05.730][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00879 kWh with 3 decimals of accuracy
[18:23:05.730][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:05.730][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:05.731][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:05.731][D][sensor:135]: 'Power Consumed': Sending state 1.59500 kW with 3 decimals of accuracy
[18:23:05.731][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:05.731][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:05.731][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:05.731][D][sensor:135]: 'Voltage Phase 1': Sending state 223.00000 V with 1 decimals of accuracy
[18:23:05.731][D][sensor:135]: 'Voltage Phase 2': Sending state 220.60001 V with 1 decimals of accuracy
[18:23:05.754][D][sensor:135]: 'Voltage Phase 3': Sending state 232.60001 V with 1 decimals of accuracy
[18:23:06.191][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.00977 kWh with 3 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Power Consumed': Sending state 1.61400 kW with 3 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Voltage Phase 1': Sending state 221.70000 V with 1 decimals of accuracy
[18:23:06.192][D][sensor:135]: 'Voltage Phase 2': Sending state 222.80000 V with 1 decimals of accuracy
[18:23:06.193][D][sensor:135]: 'Voltage Phase 3': Sending state 232.89999 V with 1 decimals of accuracy
[18:23:06.193][D][sensor:135]: 'Current Phase 1': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:06.196][D][sensor:135]: 'Current Phase 2': Sending state 5.00000 A with 1 decimals of accuracy
[18:23:06.196][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:06.196][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.20400 kW with 3 decimals of accuracy
[18:23:06.196][D][sensor:135]: 'Power Consumed Phase 2': Sending state 1.26200 kW with 3 decimals of accuracy
[18:23:06.196][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17400 kW with 3 decimals of accuracy
[18:23:06.197][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:06.197][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:06.197][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:06.197][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:06.197][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:06.241][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:07.203][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.01074 kWh with 3 decimals of accuracy
[18:23:07.203][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:07.203][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:07.203][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:07.203][D][sensor:135]: 'Power Consumed': Sending state 1.64400 kW with 3 decimals of accuracy
[18:23:07.203][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:07.203][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:07.203][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Voltage Phase 1': Sending state 221.60001 V with 1 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Voltage Phase 2': Sending state 223.20000 V with 1 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Voltage Phase 3': Sending state 231.80000 V with 1 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Current Phase 2': Sending state 5.00000 A with 1 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17500 kW with 3 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Power Consumed Phase 2': Sending state 1.26600 kW with 3 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17300 kW with 3 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:07.204][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:07.204][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:07.219][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:08.195][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.01074 kWh with 3 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Power Consumed': Sending state 2.50500 kW with 3 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Voltage Phase 1': Sending state 223.00000 V with 1 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Voltage Phase 2': Sending state 221.30000 V with 1 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Voltage Phase 3': Sending state 232.89999 V with 1 decimals of accuracy
[18:23:08.196][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:08.198][D][sensor:135]: 'Current Phase 2': Sending state 9.00000 A with 1 decimals of accuracy
[18:23:08.198][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:08.199][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17600 kW with 3 decimals of accuracy
[18:23:08.199][D][sensor:135]: 'Power Consumed Phase 2': Sending state 2.14800 kW with 3 decimals of accuracy
[18:23:08.199][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17600 kW with 3 decimals of accuracy
[18:23:08.199][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:08.199][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:08.199][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:08.199][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:08.199][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:08.244][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:13.457][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.01172 kWh with 3 decimals of accuracy
[18:23:13.940][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:13.940][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:13.940][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:13.940][D][sensor:135]: 'Power Consumed': Sending state 2.49300 kW with 3 decimals of accuracy
[18:23:13.940][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Voltage Phase 1': Sending state 222.39999 V with 1 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Voltage Phase 2': Sending state 221.30000 V with 1 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Voltage Phase 3': Sending state 232.70000 V with 1 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Current Phase 2': Sending state 9.00000 A with 1 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17700 kW with 3 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Power Consumed Phase 2': Sending state 2.14600 kW with 3 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17300 kW with 3 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:13.941][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:13.941][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:13.955][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:14.237][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.01367 kWh with 3 decimals of accuracy
[18:23:14.238][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:14.238][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:14.238][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:14.239][D][sensor:135]: 'Power Consumed': Sending state 0.42700 kW with 3 decimals of accuracy
[18:23:14.239][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:14.239][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:14.239][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:14.239][D][sensor:135]: 'Voltage Phase 1': Sending state 221.70000 V with 1 decimals of accuracy
[18:23:14.239][D][sensor:135]: 'Voltage Phase 2': Sending state 223.70000 V with 1 decimals of accuracy
[18:23:14.239][D][sensor:135]: 'Voltage Phase 3': Sending state 231.00000 V with 1 decimals of accuracy
[18:23:14.239][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.18100 kW with 3 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07200 kW with 3 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17500 kW with 3 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:14.240][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:14.240][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:14.294][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:15.204][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.01367 kWh with 3 decimals of accuracy
[18:23:15.205][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:15.205][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:15.205][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:15.205][D][sensor:135]: 'Power Consumed': Sending state 0.42800 kW with 3 decimals of accuracy
[18:23:15.206][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:15.206][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:15.206][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:15.206][D][sensor:135]: 'Voltage Phase 1': Sending state 222.20000 V with 1 decimals of accuracy
[18:23:15.206][D][sensor:135]: 'Voltage Phase 2': Sending state 223.39999 V with 1 decimals of accuracy
[18:23:15.206][D][sensor:135]: 'Voltage Phase 3': Sending state 231.70000 V with 1 decimals of accuracy
[18:23:15.206][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:15.206][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:15.207][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:15.207][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17700 kW with 3 decimals of accuracy
[18:23:15.207][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07200 kW with 3 decimals of accuracy
[18:23:15.207][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17500 kW with 3 decimals of accuracy
[18:23:15.207][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:15.207][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:15.207][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:15.207][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:15.207][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:15.260][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:16.206][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.01367 kWh with 3 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Power Consumed': Sending state 0.42500 kW with 3 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Voltage Phase 1': Sending state 222.39999 V with 1 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Voltage Phase 2': Sending state 223.20000 V with 1 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Voltage Phase 3': Sending state 231.89999 V with 1 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Current Phase 1': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:16.207][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:16.208][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:16.208][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.17900 kW with 3 decimals of accuracy
[18:23:16.208][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07200 kW with 3 decimals of accuracy
[18:23:16.208][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17300 kW with 3 decimals of accuracy
[18:23:16.208][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:16.208][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:16.208][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:16.208][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:16.208][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:16.260][D][text_sensor:097]: 'DSMR Version': Sending state '50'
[18:23:17.209][D][sensor:135]: 'Energy Consumed Tariff 1': Sending state 11858.01367 kWh with 3 decimals of accuracy
[18:23:17.209][D][sensor:135]: 'Energy Consumed Tariff 2': Sending state 12152.90332 kWh with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Energy Produced Tariff 1': Sending state 3473.65601 kWh with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Energy Produced Tariff 2': Sending state 8142.80908 kWh with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Power Consumed': Sending state 0.42500 kW with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Power Produced': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Electricity Failures': Sending state 4.00000 with 0 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Long Electricity Failures': Sending state 8.00000 with 0 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Voltage Phase 1': Sending state 222.20000 V with 1 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Voltage Phase 2': Sending state 223.39999 V with 1 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Voltage Phase 3': Sending state 231.39999 V with 1 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Current Phase 1': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Current Phase 2': Sending state 0.00000 A with 1 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Current Phase 3': Sending state 1.00000 A with 1 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Power Consumed Phase 1': Sending state 0.19900 kW with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Power Consumed Phase 2': Sending state 0.07200 kW with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Power Consumed Phase 3': Sending state 0.17200 kW with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Power Produced Phase 1': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Power Produced Phase 2': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Power Produced Phase 3': Sending state 0.00000 kW with 3 decimals of accuracy
[18:23:17.210][D][sensor:135]: 'Gas Consumed': Sending state 8251.93262 m│ with 3 decimals of accuracy
[18:23:17.210][D][text_sensor:097]: 'DSMR Identification': Sending state 'ISK5\2M550T-1012'
[18:23:17.256][D][text_sensor:097]: 'DSMR Version': Sending state '50'
And OpenHAB says:
18:22:44.270[WARN] [no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler] - [Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds
18:23:04.962[WARN] [no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler] - [Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: "set_dsmr_key" key: 1150969544 args { name: "private_key" type: SERVICE_ARG_TYPE_STRING } '.
I am afraid the device is kind of not compatible anymore.
I don’t see any device log for the api component, but a lot for the sensor component. So I cannot see why OH is loosing the connection. See more info here: GitHub - seime/openhab-esphome: ESPHome native API implementation for openHAB binding
Most likely it is one or more of the following three:
What could help debug the issue:
Set binding log level to DEBUG to see whether the data stream just stops or whether OH is falling behind (since your mentioning higher system usage)
Reduce strain on the esp device itself - you’re running on a ESP8266 which is less powerful than more modern ESP32. This could be done by
Also check the uptime sensor - does it reset often?
Did it work on earlier OH versions? Earlier binding versions?
It did work stable and well in OH4.2 with the binding that did not force the Base64 encoded encryption key for encrypted connection as well as on OH5.0 with the already mentioned configuration. Hence, I did not assume that the ESP8266 was the cause.
Currently, even after several hours after the upgrade “top” shows “java” using more than 60% CPU usage on a RPI4.2 which is over the top for 65 things, 600 items and 40 rules in my experience so far.
I guess/hope it is a performance thingy in OH5.1.1
And from the debug level log I can only guess that network monitoring plays a role for there is a ping some time before it fails, I’ll see if I can turn it off again.
"21:05:53.494","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170307'"
"21:05:53.497","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170304'"
"21:05:53.500","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170305'"
"21:05:53.503","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3569630581
state: 8253.293'"
"21:05:55.872","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Sending ping"
"21:05:57.354","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 451502780
state: ""ISK5\\2M550T-1012""'"
"21:05:57.356","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 1054876666
state: ""50""'"
"21:05:57.359","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 1\': Sending state 11860.95020 kWh with 3 decimals of accuracy\033[0m""'"
"21:05:57.361","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531687
state: 11860.95'"
"21:05:57.364","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531684
state: 12152.903'"
"21:05:57.367","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108085
state: 3473.656'"
"21:05:57.370","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108086
state: 8142.809'"
"21:05:57.373","WARN","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds"
"21:05:57.381","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.383","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.384","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.386","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.409","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.415","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.418","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.419","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.420","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.421","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.422","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.423","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.429","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.431","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.432","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.434","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.435","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.437","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet TextSensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.438","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet TextSensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.440","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.441","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.444","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.445","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.447","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.448","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.451","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.453","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.455","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.456","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.458","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.460","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.462","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:05:57.464","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SubscribeLogsResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:06:17.378","INFO","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Trying to connect to 192.168.1.50:6053"
"21:06:17.690","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Encrypted connection established. Starting API handshake."
"21:06:17.702","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received hello response api_version_major: 1
api_version_minor: 13
server_info: ""2025.12.5""
name: ""slimmelezer""
"
"21:06:17.703","INFO","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] API handshake successful. Device 'slimmelezer' running '2025.12.5' on protocol version '1.13'. Logging in."
"21:06:17.704","INFO","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Starting to stream logs to logger ESPHOMEDEVICE"
"21:06:17.705","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Device login complete, starting device interrogation"
"21:06:17.932","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type DeviceInfoResponse with content 'name: ""slimmelezer""
mac_address: ""48:E7:29:78:79:5E""
esphome_version: ""2025.12.5""
compilation_time: ""Jan 11 2026, 18:14:58""
model: ""d1_mini""
project_name: ""zuidwijk.slimmelezer""
project_version: ""1.0""
webserver_port: 80
manufacturer: ""Espressif""
api_encryption_supported: true'"
"21:06:17.980","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""energy_consumed_tariff_1""
key: 401531687
name: ""Energy Consumed Tariff 1""
unit_of_measurement: ""kWh""
accuracy_decimals: 3
device_class: ""energy""
state_class: STATE_CLASS_TOTAL_INCREASING'"
"21:06:17.986","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""energy_consumed_tariff_2""
key: 401531684
name: ""Energy Consumed Tariff 2""
unit_of_measurement: ""kWh""
accuracy_decimals: 3
device_class: ""energy""
state_class: STATE_CLASS_TOTAL_INCREASING'"
"21:06:17.991","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""energy_produced_tariff_1""
key: 1976108085
name: ""Energy Produced Tariff 1""
unit_of_measurement: ""kWh""
accuracy_decimals: 3
device_class: ""energy""
state_class: STATE_CLASS_TOTAL_INCREASING'"
"21:06:17.996","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""energy_produced_tariff_2""
key: 1976108086
name: ""Energy Produced Tariff 2""
unit_of_measurement: ""kWh""
accuracy_decimals: 3
device_class: ""energy""
state_class: STATE_CLASS_TOTAL_INCREASING'"
"21:06:18.001","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""power_consumed""
key: 3878695965
name: ""Power Consumed""
unit_of_measurement: ""kW""
accuracy_decimals: 3
device_class: ""power""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.007","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""power_produced""
key: 3696142979
name: ""Power Produced""
unit_of_measurement: ""kW""
accuracy_decimals: 3
device_class: ""power""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.013","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""electricity_failures""
key: 286119906
name: ""Electricity Failures""
icon: ""mdi:alert""'"
"21:06:18.015","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""long_electricity_failures""
key: 1349488125
name: ""Long Electricity Failures""
icon: ""mdi:alert""'"
"21:06:18.016","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""voltage_phase_1""
key: 1842825193
name: ""Voltage Phase 1""
unit_of_measurement: ""V""
accuracy_decimals: 1
device_class: ""voltage""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.021","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""voltage_phase_2""
key: 1842825194
name: ""Voltage Phase 2""
unit_of_measurement: ""V""
accuracy_decimals: 1
device_class: ""voltage""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.027","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""voltage_phase_3""
key: 1842825195
name: ""Voltage Phase 3""
unit_of_measurement: ""V""
accuracy_decimals: 1
device_class: ""voltage""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.032","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""current_phase_1""
key: 3929924364
name: ""Current Phase 1""
unit_of_measurement: ""A""
accuracy_decimals: 1
device_class: ""current""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.034","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""current_phase_2""
key: 3929924367
name: ""Current Phase 2""
unit_of_measurement: ""A""
accuracy_decimals: 1
device_class: ""current""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.037","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""current_phase_3""
key: 3929924366
name: ""Current Phase 3""
unit_of_measurement: ""A""
accuracy_decimals: 1
device_class: ""current""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.040","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""power_consumed_phase_1""
key: 1826659697
name: ""Power Consumed Phase 1""
unit_of_measurement: ""kW""
accuracy_decimals: 3
device_class: ""power""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.047","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""power_consumed_phase_2""
key: 1826659698
name: ""Power Consumed Phase 2""
unit_of_measurement: ""kW""
accuracy_decimals: 3
device_class: ""power""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.053","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesServicesResponse with content 'name: ""set_dsmr_key""
key: 1150969544
args {
name: ""private_key""
type: SERVICE_ARG_TYPE_STRING
}'"
"21:06:18.054","WARN","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Unhandled message of type io.esphome.api.ListEntitiesServicesResponse. This is lack of support in the binding. Content: 'name: ""set_dsmr_key""
key: 1150969544
args {
name: ""private_key""
type: SERVICE_ARG_TYPE_STRING
}
'."
"21:06:18.056","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""power_consumed_phase_3""
key: 1826659699
name: ""Power Consumed Phase 3""
unit_of_measurement: ""kW""
accuracy_decimals: 3
device_class: ""power""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.064","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""power_produced_phase_1""
key: 1734170307
name: ""Power Produced Phase 1""
unit_of_measurement: ""kW""
accuracy_decimals: 3
device_class: ""power""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.071","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""power_produced_phase_2""
key: 1734170304
name: ""Power Produced Phase 2""
unit_of_measurement: ""kW""
accuracy_decimals: 3
device_class: ""power""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.078","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""power_produced_phase_3""
key: 1734170305
name: ""Power Produced Phase 3""
unit_of_measurement: ""kW""
accuracy_decimals: 3
device_class: ""power""
state_class: STATE_CLASS_MEASUREMENT'"
"21:06:18.086","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""gas_consumed""
key: 3569630581
name: ""Gas Consumed""
unit_of_measurement: ""m\302\263""
accuracy_decimals: 3
device_class: ""gas""
state_class: STATE_CLASS_TOTAL_INCREASING'"
"21:06:18.088","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""slimmelezer_uptime""
key: 2832378451
name: ""SlimmeLezer Uptime""
icon: ""mdi:timer-outline""
unit_of_measurement: ""s""
device_class: ""duration""
state_class: STATE_CLASS_TOTAL_INCREASING
entity_category: ENTITY_CATEGORY_DIAGNOSTIC'"
"21:06:18.093","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesSensorResponse with content 'object_id: ""slimmelezer_wi-fi_signal""
key: 1470242286
name: ""SlimmeLezer Wi-Fi Signal""
unit_of_measurement: ""dBm""
device_class: ""signal_strength""
state_class: STATE_CLASS_MEASUREMENT
entity_category: ENTITY_CATEGORY_DIAGNOSTIC'"
"21:06:18.097","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesTextSensorResponse with content 'object_id: ""dsmr_identification""
key: 451502780
name: ""DSMR Identification""'"
"21:06:18.099","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesTextSensorResponse with content 'object_id: ""dsmr_version""
key: 1054876666
name: ""DSMR Version""'"
"21:06:18.101","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesTextSensorResponse with content 'object_id: ""slimmelezer_wi-fi_ssid""
key: 2481505255
name: ""SlimmeLezer Wi-Fi SSID""
entity_category: ENTITY_CATEGORY_DIAGNOSTIC'"
"21:06:18.103","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesTextSensorResponse with content 'object_id: ""slimmelezer_ip_address""
key: 39708461
name: ""SlimmeLezer IP Address""
entity_category: ENTITY_CATEGORY_DIAGNOSTIC'"
"21:06:18.104","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesTextSensorResponse with content 'object_id: ""esphome_version""
key: 2314437119
name: ""ESPHome Version""
icon: ""mdi:new-box""
entity_category: ENTITY_CATEGORY_DIAGNOSTIC'"
"21:06:18.105","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type ListEntitiesDoneResponse with content ''"
"21:06:18.116","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Device interrogation complete, done updating thing channels"
"21:06:18.131","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531687
state: 11860.967'"
"21:06:18.134","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531684
state: 12152.903'"
"21:06:18.137","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108085
state: 3473.656'"
"21:06:18.140","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108086
state: 8142.809'"
"21:06:18.143","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3878695965
state: 2.543'"
"21:06:18.145","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3696142979'"
"21:06:18.158","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 286119906
state: 4.0'"
"21:06:18.161","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1349488125
state: 8.0'"
"21:06:18.162","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825193
state: 223.6'"
"21:06:18.170","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825194
state: 231.1'"
"21:06:18.178","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825195
state: 229.8'"
"21:06:18.181","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924364'"
"21:06:18.182","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924367
state: 8.0'"
"21:06:18.188","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924366
state: 1.0'"
"21:06:18.190","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659697
state: 0.182'"
"21:06:18.196","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659698
state: 2.068'"
"21:06:18.205","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659699
state: 0.312'"
"21:06:18.207","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170307'"
"21:06:18.213","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170304'"
"21:06:18.215","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170305'"
"21:06:18.220","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3569630581
state: 8253.293'"
"21:06:18.221","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 2832378451
state: 1686.501'"
"21:06:18.224","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1470242286
state: -63.0'"
"21:06:18.226","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 451502780
state: ""ISK5\\2M550T-1012""'"
"21:06:18.228","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 1054876666
state: ""50""'"
"21:06:18.230","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 2481505255
state: ""MogelijkDeze""'"
"21:06:18.231","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 39708461
state: ""192.168.1.50""'"
"21:06:18.233","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 2314437119
state: ""2025.12.5""'"
"21:06:18.751","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 1\': Sending state 11860.96777 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:18.756","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 2\': Sending state 12152.90332 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:18.757","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 1\': Sending state 3473.65601 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:18.759","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 2\': Sending state 8142.80908 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:18.760","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed\': Sending state 0.55900 kW with 3 decimals of accuracy\033[0m""'"
"21:06:18.762","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:18.763","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Electricity Failures\': Sending state 4.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:18.765","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Long Electricity Failures\': Sending state 8.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:18.766","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 1\': Sending state 223.30000 V with 1 decimals of accuracy\033[0m""'"
"21:06:18.767","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 2\': Sending state 233.80000 V with 1 decimals of accuracy\033[0m""'"
"21:06:18.769","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 3\': Sending state 229.39999 V with 1 decimals of accuracy\033[0m""'"
"21:06:18.770","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 1\': Sending state 1.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:18.771","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 2\': Sending state 0.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:18.773","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 3\': Sending state 1.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:18.774","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 1\': Sending state 0.18400 kW with 3 decimals of accuracy\033[0m""'"
"21:06:18.775","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 2\': Sending state 0.05500 kW with 3 decimals of accuracy\033[0m""'"
"21:06:18.777","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 3\': Sending state 0.23900 kW with 3 decimals of accuracy\033[0m""'"
"21:06:18.778","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 1\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:18.780","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 2\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:18.781","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 3\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:18.782","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Gas Consumed\': Sending state 8253.29297 m\302\263 with 3 decimals of accuracy\033[0m""'"
"21:06:18.784","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][text_sensor:097]: \'DSMR Identification\': Sending state \'ISK5\\2M550T-1012\'\033[0m""'"
"21:06:18.785","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][text_sensor:097]: \'DSMR Version\': Sending state \'50\'\033[0m""'"
"21:06:18.786","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531687
state: 11860.968'"
"21:06:18.790","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531684
state: 12152.903'"
"21:06:18.795","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108085
state: 3473.656'"
"21:06:18.798","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108086
state: 8142.809'"
"21:06:18.801","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3878695965
state: 0.559'"
"21:06:18.803","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3696142979'"
"21:06:18.805","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 286119906
state: 4.0'"
"21:06:18.807","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1349488125
state: 8.0'"
"21:06:18.809","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825193
state: 223.3'"
"21:06:18.812","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825194
state: 233.8'"
"21:06:18.814","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825195
state: 229.4'"
"21:06:18.817","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924364
state: 1.0'"
"21:06:18.820","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924367'"
"21:06:18.823","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924366
state: 1.0'"
"21:06:18.825","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659697
state: 0.184'"
"21:06:18.828","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659698
state: 0.055'"
"21:06:18.832","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659699
state: 0.239'"
"21:06:18.834","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170307'"
"21:06:18.838","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170304'"
"21:06:18.840","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170305'"
"21:06:18.843","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3569630581
state: 8253.293'"
"21:06:18.845","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 451502780
state: ""ISK5\\2M550T-1012""'"
"21:06:18.846","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 1054876666
state: ""50""'"
"21:06:19.756","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 1\': Sending state 11860.96777 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:19.758","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 2\': Sending state 12152.90332 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:19.759","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 1\': Sending state 3473.65601 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:19.760","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 2\': Sending state 8142.80908 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:19.762","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed\': Sending state 0.56400 kW with 3 decimals of accuracy\033[0m""'"
"21:06:19.763","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:19.764","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Electricity Failures\': Sending state 4.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:19.765","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Long Electricity Failures\': Sending state 8.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:19.766","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 1\': Sending state 223.39999 V with 1 decimals of accuracy\033[0m""'"
"21:06:19.768","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 2\': Sending state 233.89999 V with 1 decimals of accuracy\033[0m""'"
"21:06:19.769","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 3\': Sending state 229.30000 V with 1 decimals of accuracy\033[0m""'"
"21:06:19.770","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 1\': Sending state 1.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:19.772","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 2\': Sending state 0.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:19.773","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 3\': Sending state 1.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:19.774","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 1\': Sending state 0.19500 kW with 3 decimals of accuracy\033[0m""'"
"21:06:19.775","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 2\': Sending state 0.05500 kW with 3 decimals of accuracy\033[0m""'"
"21:06:19.776","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 3\': Sending state 0.28800 kW with 3 decimals of accuracy\033[0m""'"
"21:06:19.778","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 1\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:19.779","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 2\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:19.780","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 3\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:19.781","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Gas Consumed\': Sending state 8253.29297 m\302\263 with 3 decimals of accuracy\033[0m""'"
"21:06:19.782","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][text_sensor:097]: \'DSMR Identification\': Sending state \'ISK5\\2M550T-1012\'\033[0m""'"
"21:06:19.783","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][text_sensor:097]: \'DSMR Version\': Sending state \'50\'\033[0m""'"
"21:06:19.784","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531687
state: 11860.968'"
"21:06:19.786","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531684
state: 12152.903'"
"21:06:19.789","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108085
state: 3473.656'"
"21:06:19.792","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108086
state: 8142.809'"
"21:06:19.795","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3878695965
state: 0.564'"
"21:06:19.797","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3696142979'"
"21:06:19.800","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 286119906
state: 4.0'"
"21:06:19.802","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1349488125
state: 8.0'"
"21:06:19.804","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825193
state: 223.4'"
"21:06:19.807","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825194
state: 233.9'"
"21:06:19.810","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825195
state: 229.3'"
"21:06:19.813","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924364
state: 1.0'"
"21:06:19.815","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924367'"
"21:06:19.817","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924366
state: 1.0'"
"21:06:19.821","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659697
state: 0.195'"
"21:06:19.825","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659698
state: 0.055'"
"21:06:19.828","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659699
state: 0.288'"
"21:06:19.831","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170307'"
"21:06:19.833","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170304'"
"21:06:19.835","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170305'"
"21:06:19.841","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3569630581
state: 8253.293'"
"21:06:19.843","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 451502780
state: ""ISK5\\2M550T-1012""'"
"21:06:19.844","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 1054876666
state: ""50""'"
"21:06:20.757","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 1\': Sending state 11860.96777 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:20.759","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 2\': Sending state 12152.90332 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:20.760","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 1\': Sending state 3473.65601 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:20.761","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 2\': Sending state 8142.80908 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:20.762","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed\': Sending state 0.57600 kW with 3 decimals of accuracy\033[0m""'"
"21:06:20.763","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:20.764","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Electricity Failures\': Sending state 4.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:20.765","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Long Electricity Failures\': Sending state 8.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:20.766","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 1\': Sending state 223.50000 V with 1 decimals of accuracy\033[0m""'"
"21:06:20.767","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 2\': Sending state 233.80000 V with 1 decimals of accuracy\033[0m""'"
"21:06:20.768","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 3\': Sending state 229.20000 V with 1 decimals of accuracy\033[0m""'"
"21:06:20.769","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 1\': Sending state 0.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:20.770","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 2\': Sending state 0.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:20.771","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 3\': Sending state 1.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:20.772","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 1\': Sending state 0.18400 kW with 3 decimals of accuracy\033[0m""'"
"21:06:20.773","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 2\': Sending state 0.05500 kW with 3 decimals of accuracy\033[0m""'"
"21:06:20.774","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 3\': Sending state 0.30400 kW with 3 decimals of accuracy\033[0m""'"
"21:06:20.776","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 1\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:20.777","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 2\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:20.778","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 3\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:20.779","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Gas Consumed\': Sending state 8253.29297 m\302\263 with 3 decimals of accuracy\033[0m""'"
"21:06:20.780","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][text_sensor:097]: \'DSMR Identification\': Sending state \'ISK5\\2M550T-1012\'\033[0m""'"
"21:06:20.781","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][text_sensor:097]: \'DSMR Version\': Sending state \'50\'\033[0m""'"
"21:06:20.782","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531687
state: 11860.968'"
"21:06:20.784","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531684
state: 12152.903'"
"21:06:20.787","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108085
state: 3473.656'"
"21:06:20.789","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108086
state: 8142.809'"
"21:06:20.791","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3878695965
state: 0.576'"
"21:06:20.793","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3696142979'"
"21:06:20.795","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 286119906
state: 4.0'"
"21:06:20.796","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1349488125
state: 8.0'"
"21:06:20.798","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825193
state: 223.5'"
"21:06:20.800","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825194
state: 233.8'"
"21:06:20.803","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825195
state: 229.2'"
"21:06:20.805","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924364'"
"21:06:20.807","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924367'"
"21:06:20.812","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924366
state: 1.0'"
"21:06:20.815","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659697
state: 0.184'"
"21:06:20.819","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659698
state: 0.055'"
"21:06:20.821","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659699
state: 0.304'"
"21:06:20.824","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170307'"
"21:06:20.826","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170304'"
"21:06:20.829","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170305'"
"21:06:20.833","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3569630581
state: 8253.293'"
"21:06:20.835","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 451502780
state: ""ISK5\\2M550T-1012""'"
"21:06:20.837","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 1054876666
state: ""50""'"
"21:06:23.199","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 1\': Sending state 11860.96777 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:23.665","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 2\': Sending state 12152.90332 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:23.668","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 1\': Sending state 3473.65601 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:23.669","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 2\': Sending state 8142.80908 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:23.670","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed\': Sending state 0.52800 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.671","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.672","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Electricity Failures\': Sending state 4.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:23.673","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Long Electricity Failures\': Sending state 8.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:23.674","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 1\': Sending state 223.50000 V with 1 decimals of accuracy\033[0m""'"
"21:06:23.675","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 2\': Sending state 233.89999 V with 1 decimals of accuracy\033[0m""'"
"21:06:23.676","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Voltage Phase 3\': Sending state 229.20000 V with 1 decimals of accuracy\033[0m""'"
"21:06:23.678","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 1\': Sending state 0.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:23.913","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 2\': Sending state 0.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:23.915","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Current Phase 3\': Sending state 1.00000 A with 1 decimals of accuracy\033[0m""'"
"21:06:23.916","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 1\': Sending state 0.18000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.917","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 2\': Sending state 0.05500 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.918","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed Phase 3\': Sending state 0.28200 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.919","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 1\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.920","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 2\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.921","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced Phase 3\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.922","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Gas Consumed\': Sending state 8253.29297 m\302\263 with 3 decimals of accuracy\033[0m""'"
"21:06:23.923","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][text_sensor:097]: \'DSMR Identification\': Sending state \'ISK5\\2M550T-1012\'\033[0m""'"
"21:06:23.924","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][text_sensor:097]: \'DSMR Version\': Sending state \'50\'\033[0m""'"
"21:06:23.925","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531687
state: 11860.968'"
"21:06:23.927","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531684
state: 12152.903'"
"21:06:23.940","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108085
state: 3473.656'"
"21:06:23.942","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108086
state: 8142.809'"
"21:06:23.944","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3878695965
state: 0.535'"
"21:06:23.946","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3696142979'"
"21:06:23.948","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 286119906
state: 4.0'"
"21:06:23.950","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1349488125
state: 8.0'"
"21:06:23.952","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825193
state: 223.2'"
"21:06:23.954","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825194
state: 234.0'"
"21:06:23.956","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1842825195
state: 229.3'"
"21:06:23.960","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924364'"
"21:06:23.962","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924367'"
"21:06:23.964","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3929924366
state: 1.0'"
"21:06:23.966","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659697
state: 0.186'"
"21:06:23.969","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659698
state: 0.054'"
"21:06:23.971","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1826659699
state: 0.308'"
"21:06:23.973","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170307'"
"21:06:23.975","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170304'"
"21:06:23.978","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1734170305'"
"21:06:23.980","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 3569630581
state: 8253.293'"
"21:06:23.982","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 451502780
state: ""ISK5\\2M550T-1012""'"
"21:06:23.983","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type TextSensorStateResponse with content 'key: 1054876666
state: ""50""'"
"21:06:23.985","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 1\': Sending state 11860.96777 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:23.986","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Consumed Tariff 2\': Sending state 12152.90332 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:23.987","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 1\': Sending state 3473.65601 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:23.988","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Energy Produced Tariff 2\': Sending state 8142.80908 kWh with 3 decimals of accuracy\033[0m""'"
"21:06:23.989","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Consumed\': Sending state 0.57000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:23.990","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Power Produced\': Sending state 0.00000 kW with 3 decimals of accuracy\033[0m""'"
"21:06:24.636","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SubscribeLogsResponse with content 'level: LOG_LEVEL_DEBUG
message: ""\033[0;36m[D][sensor:135]: \'Electricity Failures\': Sending state 4.00000 with 0 decimals of accuracy\033[0m""'"
"21:06:27.707","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Sending ping"
"21:06:28.298","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531687
state: 11860.968'"
"21:06:28.300","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 401531684
state: 12152.903'"
"21:06:28.303","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received message type SensorStateResponse with content 'key: 1976108085
state: 3473.656'"
"21:06:28.306","WARN","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Disconnecting. Reason: ESPHome device abruptly closed connection: No more bytes available in connection stream. Will reconnect in 20 seconds"
"21:06:28.312","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:06:28.313","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:06:28.314","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the socket is closed while unprocessed packets exists. Ignoring"
"21:06:28.318","DEBUG","no.seime.openhab.binding.esphome.internal.handler.ESPHomeHandler","[Slimmelezer_ESPHome_Device] Received packet SensorStateResponse while uninitialized, this can happen when the
Turned of the ‘network binding’ for this connection and it seems stable again, at least for 6 minutes which is more than ever since upgrade.
Agreed, if it worked stable before the OH upgrade it should continue to do so after. The reason I was suggesting this is that ESPHome has been known to crash randomly when it runs low on resources. And your device sends quite high bursts of sensor data and logs.
If you are referring to the network binding, it received some work in OH5. If you mean something else, please elaborate.
It is now running stable again so albeit the ESP2866 isn’t a powerhouse it serves the job.
Indeed the network binding. It already showed to be stressing my Windows setup unsurprisingly.
This week I will try turning it off completely to see if system load is reduced. That will be the next stage; determining what makes Java that busy.
The network binding was changed by me (at least), but those changes were almost exclusively around discovery and making it less resource intensive. That said, the network binding has some defaults that I consider unfortunate, like for example sending “special iOS wakeup packets” to all devices by default.
You might find that changing some of the configuration defaults to more sensible settings might reduce problems with the binding:
That doesn’t mean that it can’t be an issue with the binding, of course. I just already know that it does some “unfortunate” things by default.
Thanks for the explanation.
I ran a night with all network monitoring off and it did not have much influence on the system load. So that is good news regarding the network binding. I will continue my search as to what is causing the system load.