martinisonline
Members
-
Joined
-
Last visited
Reputation Activity
-
martinisonline got a reaction from JDSym in My Sunsynk 8Kw & data collection setupCorneSchutte, what I'm thinking is:
The registers have a 16bit length, which means they can handle values from 0 up to 65535. On this specific register, one unit represents 0.1KWh so the maximum value the register can record is 6.553,5 KWh. So, when this value is reached, the register goes to 0 and the "high word" or the register 80 increments.
Saying this, it will work fine until it reaches the 6,55 MWh. After that it will reset to 0 if we don't take into account the register number 80!
Maybe I'm wrong, but this is my understanding
-
martinisonline got a reaction from slipx in My Sunsynk 8Kw & data collection setupHello,
I notice a similar behavior and the issue was the way the variables were defined. There are some power values that are SIGNED, and other are UNSIGNED. Make sure the signed (the ones that can be positive or negative) are properly defined as SIGNED (value_type: S_WORD).