Analysing pv’s attempt to work with CMS-5000
There’s a library a wrote a little while ago that was designed to interact with some photovoltaic inverters via the serial port. It was written based on captured communication between the official ProControl software
Reader contribution
Simon’s tried out my code to see if it’ll work on a newer inverter, the CMS-5000. Unfortunately the library as it stands doesn’t quite work. So let’s take a closer look at the packets:
First we reset the inverter:
SEND -> aaaa 0100 0000 0004 00 0159
Discover inverters:
SEND -> aaaa 0100 0000 0000 00 0155
RECV <- aaaa fe00 0000 0080 0a 52353634363033303631 04fd OK
Mostly OK so far, but something that strikes me is that the first byte (0xFE) of what I assumed to be the source address seems to have some other significance (it’s not 0×0000). Moving on…
Register the inverter with address “0001â€:
SEND -> aaaa 0100 0000 0001 0c 523536343630333036310001 0384
The inverter acknowledges
RECV <- aaaa fe01 0000 0081 01 06 02db OK
So even though the first byte of the address 0xFE is incorrect, things still seem to be working.
Now we try to find what status fields the inverter gives:
SEND -> aaaa 0100 0001 0101 00 0158
RECV <- aaaa fe01 0000 0181 01 15 02eb OK
This bit here is the interesting bit. First, (if my assumptions about the comms protocol were correct), the inverter only gives 2 fields: 0×01 and 0×15. That’s really few compared with the ones I’ve seen before. Not only that, but we don’t yet know what the field 0×15 is for. Basically I assumed that the reply I get is a listing of the status fields, but instead I get something else.
So let’s query the inverter for its status:
SEND -> aaaa 0100 0001 0104 00 015b
RECV <- aaaa fe01 0000 0184 12 05dc003c071c0abe1290139a009900e8034a 080f OK
So here we have the full status update from the inverter. We can’t decode what it’s saying, because it doesn’t quite match the status field query. This is why the pv library is failing to interpret this packet based on the received structure that was supposedly just 2 fields long.
What does this mean?
In the most basic level, there are a few assumptions + generalisations that I’ve made which turned out to be inaccurate, hence it’s not working for a different model inverter.
What we’d need now is a capture of the raw communication between the official monitoring software and the inverter to get a better understanding of what’s going on.