-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Polling inverter instead of waiting for messages? #13
Comments
Hi, as far as I'm aware the T-Series can't be queried. I'm not even sure you can still call the protocol modbus, since there are no registers. The hybrid inverters from Foxess use a different protocol and can be queried, but with T-Series you are stuck the data package which is send every 90 to 120 seconds (depending on the firmware installed on the inverter).
|
Thanks! I'm working on some arduino code to make these status packages available via modbus. What's the baudrate for the status packets? |
9600 you can take most of it from my code. The .h file is in c++ allready; just ignore the HomeAssistant stuff. |
Seems like your inverter might have a new firmware, where they added bytes to the header and or footer. So for example becomes You don't have to this to every sensor, just mayby one or two to verify this is actually the issue. |
Thanks, those pictures are helpfull! I've been going over the numbers but can't figure it out yet. It definitely isn't far off, though! |
Ok,your are right. It‘s a shift by 6 bytes. It’s a little bit confusion without multiplicator. |
hmm, do you have your inverter connected to your meter? |
Yes the meter is connected... succesfully read realtime data |
ok, I understand now what they have changed.
|
Hi, I have a somewhat related issue. I want to query my T4-G3 inverter using a Modbus extension for my smart home system (called Loxone). If I understand correctly this model of inverter simply sends a status package every 90 seconds whether you want to or not? Can you also ignore this and query the Modbus registers manually? I have the inverter on the same bus as a Fox ESS AIO-H3-8.0 which sort of complicates things :). The AIO can be queried and this is working fine but I need to talk to the T4-G3 as well. I would appreciate any input. Thanks in advance.
The text was updated successfully, but these errors were encountered: