-
Notifications
You must be signed in to change notification settings - Fork 27
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
Allow retrieval of multiple different types in single call #1
Comments
Thanks for the feedback. I'm particularly interested in your work on a HomeAssistant plugin; I haven't gotten around to writing one for this myself, so keep me updated on that please. For info, @NosIreland has used As regards your proposal, I'm not adverse to this change, but I'm keen to understand your usecase a little better. For example within HomeAssistant, the native Modbus integration uses a similar-ish approach to |
For efficiency purposes, I want to be able to read all the registers at once, and perform data translation on the result. Currently, I'd have to read each register individually in order for Since it's returning a list of
I think that the native implementation is really designed around reading a single register at a time, while we've got much greater flexibility when setting up a custom integration. Performing a single network request is, IMO, a much better way of doing things, and I think adding this type of data translation will make
It's my first time trying to make a plugin for HomeAssistant so it's been a bit of a learning curve. I've got it configuring an entity and sensors, and reading values from the logger, but need to get the data translated properly (and orchestrating data refreshes in a nice async way). I only have an hour or so per day I can work on it before the sun goes down and the inverter powers off so development isn't going to be particularly rapid. I'm confident I can get it reading values from the data logger for display in a dashboard and hopefully integration with HomeAssistant's new Energy Management stuff, but writing values (and probably making it handle errors better and such) is something I'd have to leave up to the community. |
That makes sense. I have done more digging on the V5 protocol so need to update the frame creation/validation logic with my findings first. If you want to fork and create a PR for this, that would be great. Otherwise I'll work on this after.
Agreed, but we'll need to consider usability for new users too. The Format Strings notation is a bit opaque for newbies. A helper program to take an input file of Modbus registers and output the Format Strings notation might be helpful, particularly if you intend on using that in the HA integration config. Out of interest, what inverter/data logging stick do you have? I'm using a Solis Hybrid. It would be good to get a list of known compatible devices. |
I have an LSW-3 Stick Logger. I wonder if the different devices have their information at the same registers - I hope they do for ease of data retrieval. Otherwise I'll have to add something to handle different devices.
I was thinking a class that defines how a register is read/translated would be a nice way of doing this. I wouldn't expose the format strings to the end-user in the integration. At its most basic we'd pass a type to this class (e.g.
I'd love to, just gotta find the time. |
Unfortunately the Modbus mappings will vary from manufacturer to manufacturer (and sometimes even vary between the various models from same manufacturer), so any solution will need to account for this.
Okay. In terms of polling the inverter for readings, you'll have to take into account the maximum number of registers that can be queried in a single request (125), and the fact that the registers may not be contiguous or be defined in that range. I need to look again, but last time I looked, I think the information I was interested in pulling into HA requires a minimum of 3 requests in its most optimised format. |
I've updated my component to handle different device definitions, but it may need more work for more complex inverters (such as yours).
It'd be nice to have NB: I'm only pulling information from the holding registers, I believe there's other information that can be read from the input registers such as firmware versions and the like, but I haven't looked at reading that info yet. |
I've just pushed my custom component to github. It's a bit rough, but it's functional. Have a look and let me know what you think? https://github.com/YodaDaCoda/hass-solarman-modbus |
Thanks for this. Will take a look over the coming days. |
Hey, just getting a chance to come back to you on this now. This looks good. Two immediate things things come to mind;
P.S. I haven't forgotten about the |
Love the work mate! 👍 I'm writing a HomeAssistant plugin to leverage this with my solar inverter.
Looking at
read_holding_registers
and the like and how they acceptquantity
and return a list of numbers - I'd like instead to pass a variable of some kind that defines the types of variables to read, and calculate thequantity
dynamically, returning a list/tiple of the parsed types, probably usingstruct.unpack
.e.g.
Internally,
pysolarmanv5
should then be able to construct astruct.Struct
from the provided format and use the.size
property in place of the existingquantity
parameter.May need to have a class to allow for the existing scale/signed/bitmask/bitshift stuff to be handled nicely.
I hope to get time to look at this myself in the coming days, but if not this will serve as a springboard / reminder.
The text was updated successfully, but these errors were encountered: