fix pv vyroby (unsinged)
All checks were successful
deploy / deploy (push) Successful in 35s
test / smoke-test (push) Successful in 7s

This commit is contained in:
Dusan Vojacek
2026-04-10 20:30:03 +02:00
parent ec55285bdd
commit 920d9ff40c
7 changed files with 75 additions and 17 deletions

View File

@@ -18,11 +18,11 @@ REGISTERS: dict[str, tuple[int, str, int, str, str]] = {
"battery_power_w": (590, "sint", 1, "W", "+ vybíjení / nabíjení"),
"batt_charge_today_wh": (514, "uint", 1, "Wh", "dnešní nabití baterie"),
"batt_discharge_today_wh": (515, "uint", 1, "Wh", "dnešní vybití baterie"),
"gen_port_power_w": (667, "uint", 1, "W", "GEN port FVE pole B"),
"gen_port_power_w": (667, "sint", 1, "W", "GEN port FVE pole B (signed)"),
"grid_total_power_w": (625, "sint", 1, "W", "+ import ze sítě / export"),
"load_total_power_w": (653, "uint", 1, "W", "celková spotřeba"),
"pv1_power_w": (672, "uint", 1, "W", "výkon PV1"),
"pv2_power_w": (673, "uint", 1, "W", "výkon PV2"),
"pv1_power_w": (672, "sint", 1, "W", "výkon PV1 (signed)"),
"pv2_power_w": (673, "sint", 1, "W", "výkon PV2 (signed)"),
}