Open
Description
The problem
After adding a battery to my battery stack, I now have the following problem:
After starting the ESP32, all 4 batteries are recognized and values are supplied.
After an unspecified time, battery 4 stops supplying values - batteries 1-3 continue to supply values.
Which version of ESPHome has the issue?
2025.5.2
What type of installation are you using?
Home Assistant Add-on
Which version of Home Assistant has the issue?
2025.5.3
What platform are you using?
ESP32
Board
esp32dev
Component causing the issue
pylontech
YAML Config
esphome:
name: "pylontech"
friendly_name: Pylontech
esp32:
board: esp32dev
# Enable logging
logger:
baud_rate: 0
# level: INFO
# Enable Home Assistant API
api:
ota:
platform: esphome
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
fast_connect: true
power_save_mode: none
output_power: 20dB
web_server:
port: 80
switch:
- platform: restart
name: "Pylontech Restart"
id: restart_switch
uart:
id: uart_bus
tx_pin: GPIO 17
rx_pin: GPIO 16
baud_rate: 115200
#baud_rate: 1200
rx_buffer_size: 2048
debug:
direction: BOTH
dummy_receiver: false
after:
delimiter: "\n"
sequence:
- lambda: UARTDebug::log_string(direction, bytes);
pylontech:
id: pylontech0
uart_id: uart_bus
update_interval: 120s
sensor:
- platform: pylontech
battery: 1
voltage:
id: bat1_voltage
name: "Battery1 Voltage"
current:
id: bat1_current
name: "Battery1 Current"
coulomb:
name: "Battery1 State of Charge"
temperature:
name: "Battery1 Temperature"
- platform: pylontech
battery: 2
voltage:
id: bat2_voltage
name: "Battery2 Voltage"
current:
id: bat2_current
name: "Battery2 Current"
coulomb:
name: "Battery2 State of Charge"
temperature:
name: "Battery2 Temperature"
- platform: pylontech
battery: 3
voltage:
id: bat3_voltage
name: "Battery3 Voltage"
current:
id: bat3_current
name: "Battery3 Current"
coulomb:
name: "Battery3 State of Charge"
temperature:
name: "Battery3 Temperature"
- platform: pylontech
battery: 4
voltage:
id: bat4_voltage
name: "Battery4 Voltage"
current:
id: bat4_current
name: "Battery4 Current"
coulomb:
name: "Battery4 State of Charge"
temperature:
name: "Battery4 Temperature"
- platform: template
id: pylontech_power
name: "Pylontech power"
unit_of_measurement: W
lambda: |-
auto pwr1 = id(bat1_voltage).state * id(bat1_current).state;
auto pwr2 = id(bat2_voltage).state * id(bat2_current).state;
auto pwr3 = id(bat3_voltage).state * id(bat3_current).state;
auto pwr4 = id(bat4_voltage).state * id(bat4_current).state;
auto pwr = pwr1 + pwr2 + pwr3 + pwr4;
id(combined_charge_power).publish_state(max(pwr, 0.0f));
id(combined_discharge_power).publish_state(max(-pwr, 0.0f));
return pwr;
update_interval: 5s
device_class: power
state_class: measurement
- platform: template
id: combined_charge_power
- platform: template
id: combined_discharge_power
- platform: integration
name: "Pylontech charging"
sensor: combined_charge_power
time_unit: h
state_class: total_increasing
device_class: energy
unit_of_measurement: "Wh"
- platform: integration
name: "Pylontech discharging"
sensor: combined_discharge_power
time_unit: h
state_class: total_increasing
device_class: energy
unit_of_measurement: "Wh"
text_sensor:
- platform: pylontech
battery: 1
base_state:
id: bat1_base_state
name: "Battery1 Base State"
voltage_state:
id: bat1_voltage_state
name: "Battery1 Voltage State"
current_state:
id: bat1_current_state
name: "Battery1 Current State"
temperature_state:
id: bat1_temperature_state
name: "Battery1 Temperature State"
- platform: pylontech
battery: 2
base_state:
id: bat2_base_state
name: "Battery2 Base State"
voltage_state:
id: bat2_voltage_state
name: "Battery2 Voltage State"
current_state:
id: bat2_current_state
name: "Battery2 Current State"
temperature_state:
id: bat2_temperature_state
name: "Battery2 Temperature State"
- platform: pylontech
battery: 3
base_state:
id: bat3_base_state
name: "Battery3 Base State"
voltage_state:
id: bat3_voltage_state
name: "Battery3 Voltage State"
current_state:
id: bat3_current_state
name: "Battery3 Current State"
temperature_state:
id: bat3_temperature_state
name: "Battery3 Temperature State"
- platform: pylontech
battery: 4
base_state:
id: bat4_base_state
name: "Battery4 Base State"
voltage_state:
id: bat4_voltage_state
name: "Battery4 Voltage State"
current_state:
id: bat4_current_state
name: "Battery4 Current State"
temperature_state:
id: bat4_temperature_state
name: "Battery4 Temperature State"
Anything in the logs that might be useful for us?
[09:57:15][D][uart_debug:158]: >>> "pwr\n"
[09:57:15][D][uart_debug:158]: <<< "pwr\n"
[09:57:15][D][uart_debug:158]: <<< "\r@\r\r\n"
[09:57:15][D][uart_debug:158]: <<< "Power Volt Curr Tempr Tlow Thigh Vlow Vhigh Base.St Volt.St Curr.St Temp.St Coulomb Time B.V.St B.T.St MosTempr M."
[09:57:15][D][uart_debug:158]: <<< "T.St \r\r\n"
[09:57:15][D][uart_debug:158]: <<< "1 50707 12138 26700 25900 26200 3379 3383 Charge Normal Normal Normal 72% 2025-06-12 16:04:19 Normal Normal 25300 Nor"
[09:57:15][D][uart_debug:158]: <<< "mal \r\r\n"
[09:57:15][D][uart_debug:158]: <<< "2 50684 13770 28700 26000 26300 3378 3381 Charge Normal Normal Normal 82% 2025-06-12 16:04:18 Normal Normal 26500 Nor"
[09:57:15][D][uart_debug:158]: <<< "mal \r\r\n"
[09:57:15][D][uart_debug:158]: <<< "3 50699 13048 26000 25000 26000 3378 3382 Charge Normal Normal Normal 83% 2025-06-12 16:04:18 Normal Normal - - "
[09:57:15][D][uart_debug:158]: <<< " \r\r\n"
[09:57:15][D][uart_debug:158]: <<< "4 50661 12344 26000 25000 25000 3376 3379 Charge Normal Normal Normal 79% 2025-06-12 16:04:18 Normal Normal - - "
[09:57:15][D][uart_debug:158]: <<< " \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "5 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "6 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "7 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "8 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "9 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "10 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "11 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "12 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "13 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "14 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "15 - - - - - - - Absent - - - - - - - \r\r\n"
[09:57:16][D][uart_debug:158]: <<< "16 - - - - - - - Absent - - - - - - - \r\n"
[09:57:16][D][uart_debug:158]: <<< "\rCommand completed successfully\r\n"
[09:57:16][D][uart_debug:158]: <<< "\r$$\r\n"
[09:57:16][W][pylontech:093]: bat_num 3: received no mostempr
[09:57:16][D][sensor:094]: 'Battery3 Voltage': Sending state 50.68200 V with 3 decimals of accuracy
[09:57:16][D][sensor:094]: 'Battery3 Current': Sending state 13.32300 A with 3 decimals of accuracy
[09:57:16][D][sensor:094]: 'Battery3 Temperature': Sending state 26.00000 °C with 1 decimals of accuracy
[09:57:16][D][sensor:094]: 'Battery3 State of Charge': Sending state 79.00000 % with 0 decimals of accuracy
[09:57:16][D][text_sensor:064]: 'Battery3 Base State': Sending state 'Charge'
[09:57:16][D][text_sensor:064]: 'Battery3 Voltage State': Sending state 'Normal'
[09:57:16][D][text_sensor:064]: 'Battery3 Current State': Sending state 'Normal'
[09:57:16][D][text_sensor:064]: 'Battery3 Temperature State': Sending state 'Normal'
[09:57:16][D][uart_debug:158]: <<< "\rpylon>"
[09:57:16][W][pylontech:093]: bat_num 4: received no mostempr
[09:57:16][D][sensor:094]: 'Battery4 Voltage': Sending state 50.63900 V with 3 decimals of accuracy
[09:57:16][D][sensor:094]: 'Battery4 Current': Sending state 12.24000 A with 3 decimals of accuracy
[09:57:16][D][sensor:094]: 'Battery4 Temperature': Sending state 26.00000 °C with 1 decimals of accuracy
[09:57:16][D][sensor:094]: 'Battery4 State of Charge': Sending state 75.00000 % with 0 decimals of accuracy
[09:57:16][D][text_sensor:064]: 'Battery4 Base State': Sending state 'Charge'
[09:57:16][D][text_sensor:064]: 'Battery4 Voltage State': Sending state 'Normal'
[09:57:16][D][text_sensor:064]: 'Battery4 Current State': Sending state 'Normal'
[09:57:16][D][text_sensor:064]: 'Battery4 Temperature State': Sending state 'Normal'
bsent - - - - - - - 4 - -1- t -
n
sp 2 - - 0 - -1- t -
s b A t$o9 7- t -
5-
uyV3 - - 1 - -1- t -
w - -8- t -
s b A - - - p
0
[09:57:19][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:19][D][sensor:094]: 'Pylontech charging': Sending state 608.42303 Wh with 3 decimals of accuracy
[09:57:19][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:19][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:19][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:57:24][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:24][D][sensor:094]: 'Pylontech charging': Sending state 612.06836 Wh with 3 decimals of accuracy
[09:57:24][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:24][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:24][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:57:29][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:29][D][sensor:094]: 'Pylontech charging': Sending state 615.71362 Wh with 3 decimals of accuracy
[09:57:29][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:29][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:29][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:57:34][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:34][D][sensor:094]: 'Pylontech charging': Sending state 619.35895 Wh with 3 decimals of accuracy
[09:57:34][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:34][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:34][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:57:39][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:39][D][sensor:094]: 'Pylontech charging': Sending state 623.00861 Wh with 3 decimals of accuracy
[09:57:39][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:39][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:39][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:57:44][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:44][D][sensor:094]: 'Pylontech charging': Sending state 626.65613 Wh with 3 decimals of accuracy
[09:57:44][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:44][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:44][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:57:49][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:49][D][sensor:094]: 'Pylontech charging': Sending state 630.30145 Wh with 3 decimals of accuracy
[09:57:49][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:49][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:49][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:57:54][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:54][D][sensor:094]: 'Pylontech charging': Sending state 633.94818 Wh with 3 decimals of accuracy
[09:57:54][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:54][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:54][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:57:59][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:57:59][D][sensor:094]: 'Pylontech charging': Sending state 637.59277 Wh with 3 decimals of accuracy
[09:57:59][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:57:59][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:57:59][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:04][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:04][D][sensor:094]: 'Pylontech charging': Sending state 641.24023 Wh with 3 decimals of accuracy
[09:58:04][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:04][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:04][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:09][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:09][D][sensor:094]: 'Pylontech charging': Sending state 644.88629 Wh with 3 decimals of accuracy
[09:58:09][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:09][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:09][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:14][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:14][D][sensor:094]: 'Pylontech charging': Sending state 648.53308 Wh with 3 decimals of accuracy
[09:58:14][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:14][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:14][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:19][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:19][D][sensor:094]: 'Pylontech charging': Sending state 652.17908 Wh with 3 decimals of accuracy
[09:58:19][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:19][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:19][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:24][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:24][D][sensor:094]: 'Pylontech charging': Sending state 655.82806 Wh with 3 decimals of accuracy
[09:58:24][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:24][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:24][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:29][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:29][D][sensor:094]: 'Pylontech charging': Sending state 659.47552 Wh with 3 decimals of accuracy
[09:58:29][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:29][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:29][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:34][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:34][D][sensor:094]: 'Pylontech charging': Sending state 663.12012 Wh with 3 decimals of accuracy
[09:58:34][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:34][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:34][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:39][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:39][D][sensor:094]: 'Pylontech charging': Sending state 666.76904 Wh with 3 decimals of accuracy
[09:58:39][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:39][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:39][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:44][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:44][D][sensor:094]: 'Pylontech charging': Sending state 670.41437 Wh with 3 decimals of accuracy
[09:58:44][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:44][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:44][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:49][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:49][D][sensor:094]: 'Pylontech charging': Sending state 674.05963 Wh with 3 decimals of accuracy
[09:58:49][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:49][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:49][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:54][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:54][D][sensor:094]: 'Pylontech charging': Sending state 677.70789 Wh with 3 decimals of accuracy
[09:58:54][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:54][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:54][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:58:59][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:58:59][D][sensor:094]: 'Pylontech charging': Sending state 681.35028 Wh with 3 decimals of accuracy
[09:58:59][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:58:59][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:58:59][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:59:04][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:59:04][D][sensor:094]: 'Pylontech charging': Sending state 685.00067 Wh with 3 decimals of accuracy
[09:59:04][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:04][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:04][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:59:09][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:59:09][D][sensor:094]: 'Pylontech charging': Sending state 688.64526 Wh with 3 decimals of accuracy
[09:59:09][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:09][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:09][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:59:14][D][sensor:094]: 'combined_charge_power': Sending state 2624.61865 with 1 decimals of accuracy
[09:59:14][D][sensor:094]: 'Pylontech charging': Sending state 692.29126 Wh with 3 decimals of accuracy
[09:59:14][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:14][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:14][D][sensor:094]: 'Pylontech power': Sending state 2624.61865 W with 1 decimals of accuracy
[09:59:15][D][uart_debug:158]: >>> "pwr\n"
[09:59:15][D][uart_debug:158]: <<< "pwr\n"
[09:59:15][D][uart_debug:158]: <<< "\r@\r\r\n"
[09:59:15][D][uart_debug:158]: <<< "Power Volt Curr Tempr Tlow Thigh Vlow Vhigh Base.St Volt.St Curr.St Temp.St Coulomb Time B.V.St B.T.St MosTempr M."
[09:59:15][D][uart_debug:158]: <<< "T.St \r\r\n"
[09:59:15][D][uart_debug:158]: <<< "1 50720 12333 26800 25900 26200 3380 3384 Charge Normal Normal Normal 72% 2025-06-12 16:06:19 Normal Normal 25300 Nor"
[09:59:15][D][uart_debug:158]: <<< "mal \r\r\n"
[09:59:15][D][uart_debug:158]: <<< "2 50690 13751 28700 26000 26300 3378 3381 Charge Normal Normal Normal 83% 2025-06-12 16:06:18 Normal Normal 26500 Nor"
[09:59:15][D][uart_debug:158]: <<< "mal \r\r\n"
[09:59:15][D][uart_debug:158]: <<< "3 50713 13066 26000 26000 26000 3378 3383 Charge Normal Normal Normal 84% 2025-06-12 16:06:18 Normal Normal - - "
[09:59:15][D][uart_debug:158]: <<< " \r\r\n"
[09:59:15][D][uart_debug:158]: <<< "4 50665 12418 26000 25000 25000 3376 3379 Charge Normal Normal Normal 80% 2025-06-12 16:06:18 Normal Normal - - "
[09:59:15][D][uart_debug:158]: <<< " \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "5 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "6 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "7 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "8 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "9 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "10 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "11 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "12 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "13 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "14 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "15 - - - - - - - Absent - - - - - - - \r\r\n"
[09:59:16][D][uart_debug:158]: <<< "16 - - - - - - - Absent - - - - - - - \r\n"
[09:59:16][D][uart_debug:158]: <<< "\rCommand completed successfully\r\n"
[09:59:16][D][uart_debug:158]: <<< "\r$$\r\n"
86 26000 24000 25000 3375 3378 Charge Normal Normal Normal 76% 2025-06-12 15:58:18 - - - 2 - -1- t -
s d
e - - -9- t -
s b A - - - l
s b A - - -
[09:59:16][D][sensor:094]: 'Battery1 Voltage': Sending state 50.70200 V with 3 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery1 Current': Sending state 12.11500 A with 3 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery1 Temperature': Sending state 26.60000 °C with 1 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery1 State of Charge': Sending state 69.00000 % with 0 decimals of accuracy
[09:59:16][D][text_sensor:064]: 'Battery1 Base State': Sending state 'Charge'
[09:59:16][D][text_sensor:064]: 'Battery1 Voltage State': Sending state 'Normal'
[09:59:16][D][text_sensor:064]: 'Battery1 Current State': Sending state 'Normal'
[09:59:16][D][text_sensor:064]: 'Battery1 Temperature State': Sending state 'Normal'
[09:59:16][D][uart_debug:158]: <<< "\rpylon>"
[09:59:16][D][sensor:094]: 'Battery2 Voltage': Sending state 50.67200 V with 3 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery2 Current': Sending state 14.33000 A with 3 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery2 Temperature': Sending state 28.50000 °C with 1 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery2 State of Charge': Sending state 79.00000 % with 0 decimals of accuracy
[09:59:16][D][text_sensor:064]: 'Battery2 Base State': Sending state 'Charge'
[09:59:16][D][text_sensor:064]: 'Battery2 Voltage State': Sending state 'Normal'
[09:59:16][D][text_sensor:064]: 'Battery2 Current State': Sending state 'Normal'
[09:59:16][D][text_sensor:064]: 'Battery2 Temperature State': Sending state 'Normal'
[09:59:16][W][pylontech:093]: bat_num 3: received no mostempr
[09:59:16][D][sensor:094]: 'Battery3 Voltage': Sending state 50.68600 V with 3 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery3 Current': Sending state 13.41000 A with 3 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery3 Temperature': Sending state 26.00000 °C with 1 decimals of accuracy
[09:59:16][D][sensor:094]: 'Battery3 State of Charge': Sending state 80.00000 % with 0 decimals of accuracy
[09:59:16][D][text_sensor:064]: 'Battery3 Base State': Sending state 'Charge'
[09:59:16][D][text_sensor:064]: 'Battery3 Voltage State': Sending state 'Normal'
[09:59:16][D][text_sensor:064]: 'Battery3 Current State': Sending state 'Normal'
[09:59:16][D][text_sensor:064]: 'Battery3 Temperature State': Sending state 'Normal'
[09:59:19][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:19][D][sensor:094]: 'Pylontech charging': Sending state 695.94940 Wh with 3 decimals of accuracy
[09:59:19][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:19][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:19][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[09:59:24][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:24][D][sensor:094]: 'Pylontech charging': Sending state 699.61664 Wh with 3 decimals of accuracy
[09:59:24][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:24][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:24][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[09:59:29][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:29][D][sensor:094]: 'Pylontech charging': Sending state 703.28613 Wh with 3 decimals of accuracy
[09:59:29][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:29][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:29][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[09:59:34][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:34][D][sensor:094]: 'Pylontech charging': Sending state 706.95483 Wh with 3 decimals of accuracy
[09:59:34][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:34][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:34][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[09:59:39][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:39][D][sensor:094]: 'Pylontech charging': Sending state 710.62506 Wh with 3 decimals of accuracy
[09:59:39][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:39][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:39][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[09:59:44][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:44][D][sensor:094]: 'Pylontech charging': Sending state 714.29163 Wh with 3 decimals of accuracy
[09:59:44][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:44][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:44][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[09:59:49][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:49][D][sensor:094]: 'Pylontech charging': Sending state 717.95813 Wh with 3 decimals of accuracy
[09:59:49][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:49][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:49][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[09:59:54][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:54][D][sensor:094]: 'Pylontech charging': Sending state 721.62543 Wh with 3 decimals of accuracy
[09:59:54][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:54][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:54][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[09:59:59][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[09:59:59][D][sensor:094]: 'Pylontech charging': Sending state 725.29266 Wh with 3 decimals of accuracy
[09:59:59][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[09:59:59][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[09:59:59][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:04][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:04][D][sensor:094]: 'Pylontech charging': Sending state 728.95923 Wh with 3 decimals of accuracy
[10:00:04][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:04][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:04][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:09][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:09][D][sensor:094]: 'Pylontech charging': Sending state 732.62573 Wh with 3 decimals of accuracy
[10:00:09][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:09][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:09][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:14][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:14][D][sensor:094]: 'Pylontech charging': Sending state 736.29523 Wh with 3 decimals of accuracy
[10:00:14][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:14][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:14][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:19][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:19][D][sensor:094]: 'Pylontech charging': Sending state 739.96466 Wh with 3 decimals of accuracy
[10:00:19][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:19][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:19][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:24][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:24][D][sensor:094]: 'Pylontech charging': Sending state 743.63342 Wh with 3 decimals of accuracy
[10:00:24][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:24][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:24][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:29][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:29][D][sensor:094]: 'Pylontech charging': Sending state 747.30066 Wh with 3 decimals of accuracy
[10:00:29][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:29][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:29][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:34][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:34][D][sensor:094]: 'Pylontech charging': Sending state 750.96722 Wh with 3 decimals of accuracy
[10:00:34][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:34][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:34][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:39][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:39][D][sensor:094]: 'Pylontech charging': Sending state 754.63593 Wh with 3 decimals of accuracy
[10:00:39][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:39][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:39][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:44][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:44][D][sensor:094]: 'Pylontech charging': Sending state 758.30322 Wh with 3 decimals of accuracy
[10:00:44][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:44][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:44][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:49][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:49][D][sensor:094]: 'Pylontech charging': Sending state 761.96899 Wh with 3 decimals of accuracy
[10:00:49][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:49][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:49][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:54][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:54][D][sensor:094]: 'Pylontech charging': Sending state 765.63629 Wh with 3 decimals of accuracy
[10:00:54][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:54][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:54][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:00:59][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:00:59][D][sensor:094]: 'Pylontech charging': Sending state 769.30499 Wh with 3 decimals of accuracy
[10:00:59][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:00:59][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:00:59][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:01:04][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:01:04][D][sensor:094]: 'Pylontech charging': Sending state 772.97009 Wh with 3 decimals of accuracy
[10:01:04][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:04][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:04][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:01:09][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:01:09][D][sensor:094]: 'Pylontech charging': Sending state 776.63953 Wh with 3 decimals of accuracy
[10:01:09][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:09][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:09][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:01:14][D][sensor:094]: 'combined_charge_power': Sending state 2639.90503 with 1 decimals of accuracy
[10:01:14][D][sensor:094]: 'Pylontech charging': Sending state 780.30975 Wh with 3 decimals of accuracy
[10:01:14][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:14][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:14][D][sensor:094]: 'Pylontech power': Sending state 2639.90503 W with 1 decimals of accuracy
[10:01:15][D][uart_debug:158]: >>> "pwr\n"
[10:01:15][D][uart_debug:158]: <<< "pwr\n"
[10:01:15][D][uart_debug:158]: <<< "\r@\r\r\n"
[10:01:15][D][uart_debug:158]: <<< "Power Volt Curr Tempr Tlow Thigh Vlow Vhigh Base.St Volt.St Curr.St Temp.St Coulomb Time B.V.St B.T.St MosTempr M."
[10:01:15][D][uart_debug:158]: <<< "T.St \r\r\n"
[10:01:15][D][uart_debug:158]: <<< "1 50724 12439 26800 25900 26300 3380 3384 Charge Normal Normal
57AE
Normal 73% 2025-06-12 16:08:19 Normal Normal 25400 Nor"
[10:01:15][D][uart_debug:158]: <<< "mal \r\r\n"
[10:01:15][D][uart_debug:158]: <<< "2 50703 13662 28800 26000 26400 3379 3382 Charge Normal Normal Normal 84% 2025-06-12 16:08:18 Normal Normal 26600 Nor"
[10:01:15][D][uart_debug:158]: <<< "mal \r\r\n"
[10:01:15][D][uart_debug:158]: <<< "3 50724 12974 26000 26000 26000 3380 3383 Charge Normal Normal Normal 85% 2025-06-12 16:08:18 Normal Normal - - "
[10:01:15][D][uart_debug:158]: <<< " \r\r\n"
[10:01:15][D][uart_debug:158]: <<< "4 50676 12408 26000 25000 25000 3376 3381 Charge Normal Normal Normal 81% 2025-06-12 16:08:18 Normal Normal - - "
[10:01:15][D][uart_debug:158]: <<< " \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "5 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "6 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "7 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "8 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "9 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "10 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "11 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "12 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "13 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "14 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "15 - - - - - - - Absent - - - - - - - \r\r\n"
[10:01:16][D][uart_debug:158]: <<< "16 - - - - - - - Absent - - - - - - - \r\n"
[10:01:16][D][uart_debug:158]: <<< "\rCommand completed successfully\r\n"
[10:01:16][D][uart_debug:158]: <<< "\r$$\r\n"
01 26000 24000 25000 3375 3379 Charge Normal Normal Normal 77% 2025-06-12 16:00:18 - - - 2 - -1- t -
s d
e - - -9- t -
s b A - - - l
s b A - - -
[10:01:16][D][sensor:094]: 'Battery1 Voltage': Sending state 50.70600 V with 3 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery1 Current': Sending state 12.03100 A with 3 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery1 Temperature': Sending state 26.60000 °C with 1 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery1 State of Charge': Sending state 70.00000 % with 0 decimals of accuracy
[10:01:16][D][text_sensor:064]: 'Battery1 Base State': Sending state 'Charge'
[10:01:16][D][text_sensor:064]: 'Battery1 Voltage State': Sending state 'Normal'
[10:01:16][D][text_sensor:064]: 'Battery1 Current State': Sending state 'Normal'
[10:01:16][D][text_sensor:064]: 'Battery1 Temperature State': Sending state 'Normal'
[10:01:16][D][uart_debug:158]: <<< "\rpylon>"
[10:01:16][D][sensor:094]: 'Battery2 Voltage': Sending state 50.67500 V with 3 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery2 Current': Sending state 14.26900 A with 3 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery2 Temperature': Sending state 28.50000 °C with 1 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery2 State of Charge': Sending state 80.00000 % with 0 decimals of accuracy
[10:01:16][D][text_sensor:064]: 'Battery2 Base State': Sending state 'Charge'
[10:01:16][D][text_sensor:064]: 'Battery2 Voltage State': Sending state 'Normal'
[10:01:16][D][text_sensor:064]: 'Battery2 Current State': Sending state 'Normal'
[10:01:16][D][text_sensor:064]: 'Battery2 Temperature State': Sending state 'Normal'
[10:01:16][W][pylontech:093]: bat_num 3: received no mostempr
[10:01:16][D][sensor:094]: 'Battery3 Voltage': Sending state 50.69400 V with 3 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery3 Current': Sending state 13.32800 A with 3 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery3 Temperature': Sending state 26.00000 °C with 1 decimals of accuracy
[10:01:16][D][sensor:094]: 'Battery3 State of Charge': Sending state 81.00000 % with 0 decimals of accuracy
[10:01:16][D][text_sensor:064]: 'Battery3 Base State': Sending state 'Charge'
[10:01:16][D][text_sensor:064]: 'Battery3 Voltage State': Sending state 'Normal'
[10:01:16][D][text_sensor:064]: 'Battery3 Current State': Sending state 'Normal'
[10:01:16][D][text_sensor:064]: 'Battery3 Temperature State': Sending state 'Normal'
[10:01:19][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:19][D][sensor:094]: 'Pylontech charging': Sending state 783.96918 Wh with 3 decimals of accuracy
[10:01:19][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:19][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:19][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:01:24][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:24][D][sensor:094]: 'Pylontech charging': Sending state 787.61926 Wh with 3 decimals of accuracy
[10:01:24][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:24][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:24][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:01:29][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:29][D][sensor:094]: 'Pylontech charging': Sending state 791.26935 Wh with 3 decimals of accuracy
[10:01:29][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:29][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:29][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:01:34][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:34][D][sensor:094]: 'Pylontech charging': Sending state 794.92529 Wh with 3 decimals of accuracy
[10:01:34][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:34][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:34][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:01:39][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:39][D][sensor:094]: 'Pylontech charging': Sending state 798.57611 Wh with 3 decimals of accuracy
[10:01:39][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:39][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:39][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:01:44][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:44][D][sensor:094]: 'Pylontech charging': Sending state 802.22986 Wh with 3 decimals of accuracy
[10:01:44][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:44][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:44][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:01:49][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:49][D][sensor:094]: 'Pylontech charging': Sending state 805.88434 Wh with 3 decimals of accuracy
[10:01:49][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:49][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:49][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:01:54][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:54][D][sensor:094]: 'Pylontech charging': Sending state 809.53448 Wh with 3 decimals of accuracy
[10:01:54][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:54][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:54][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:01:59][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:01:59][D][sensor:094]: 'Pylontech charging': Sending state 813.19043 Wh with 3 decimals of accuracy
[10:01:59][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:01:59][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:01:59][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:02:04][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:02:04][D][sensor:094]: 'Pylontech charging': Sending state 816.83978 Wh with 3 decimals of accuracy
[10:02:04][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:02:04][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:02:04][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:02:09][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:02:09][D][sensor:094]: 'Pylontech charging': Sending state 820.49353 Wh with 3 decimals of accuracy
[10:02:09][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:02:09][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:02:09][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:02:14][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:02:14][D][sensor:094]: 'Pylontech charging': Sending state 824.14581 Wh with 3 decimals of accuracy
[10:02:14][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:02:14][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:02:14][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:02:19][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:02:19][D][sensor:094]: 'Pylontech charging': Sending state 827.79736 Wh with 3 decimals of accuracy
[10:02:19][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:02:19][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:02:19][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:02:24][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:02:24][D][sensor:094]: 'Pylontech charging': Sending state 831.44745 Wh with 3 decimals of accuracy
[10:02:24][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:02:24][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:02:24][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:02:29][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:02:29][D][sensor:094]: 'Pylontech charging': Sending state 835.09900 Wh with 3 decimals of accuracy
[10:02:29][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:02:29][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:02:29][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:02:34][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:02:34][D][sensor:094]: 'Pylontech charging': Sending state 838.75421 Wh with 3 decimals of accuracy
[10:02:34][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:02:34][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:02:34][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
[10:02:39][D][sensor:094]: 'combined_charge_power': Sending state 2628.59644 with 1 decimals of accuracy
[10:02:39][D][sensor:094]: 'Pylontech charging': Sending state 842.40723 Wh with 3 decimals of accuracy
[10:02:39][D][sensor:094]: 'combined_discharge_power': Sending state 0.00000 with 1 decimals of accuracy
[10:02:39][D][sensor:094]: 'Pylontech discharging': Sending state 0.00000 Wh with 3 decimals of accuracy
[10:02:39][D][sensor:094]: 'Pylontech power': Sending state 2628.59644 W with 1 decimals of accuracy
Additional information
Metadata
Metadata
Assignees
Labels
No labels