From 1f6eeca0ac59924fd856895fd295f30c747dcbe4 Mon Sep 17 00:00:00 2001 From: Felix Mumme Date: Fri, 17 Jan 2025 10:25:18 +0100 Subject: [PATCH] Add active charge energy and active discharge energy to modbus slave nature table of SymmetricEss This will allow the Edge2EdgeEss to read those channels and export correct historical data. --- .../src/io/openems/edge/ess/api/SymmetricEss.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/io.openems.edge.ess.api/src/io/openems/edge/ess/api/SymmetricEss.java b/io.openems.edge.ess.api/src/io/openems/edge/ess/api/SymmetricEss.java index 04e27c3b2e..ee166cd85e 100644 --- a/io.openems.edge.ess.api/src/io/openems/edge/ess/api/SymmetricEss.java +++ b/io.openems.edge.ess.api/src/io/openems/edge/ess/api/SymmetricEss.java @@ -225,6 +225,8 @@ public static ModbusSlaveNatureTable getModbusSlaveNatureTable(AccessMode access .channel(10, ChannelId.MIN_CELL_TEMPERATURE, ModbusType.FLOAT32) // .channel(12, ChannelId.MAX_CELL_TEMPERATURE, ModbusType.FLOAT32) // .channel(14, ChannelId.CAPACITY, ModbusType.FLOAT32) // + .channel(16, ChannelId.ACTIVE_CHARGE_ENERGY, ModbusType.FLOAT64) // + .channel(20, ChannelId.ACTIVE_DISCHARGE_ENERGY, ModbusType.FLOAT64) // .build(); }