We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The renogy-bt project has a concept of sections for requesting different types of data from the BLE connection. E.g. for batteries:
self.sections = [ {'register': 5000, 'words': 17, 'parser': self.parse_cell_volt_info}, {'register': 5017, 'words': 17, 'parser': self.parse_cell_temp_info}, {'register': 5042, 'words': 6, 'parser': self.parse_battery_info}, {'register': 5122, 'words': 8, 'parser': self.parse_device_info}, {'register': 5223, 'words': 1, 'parser': self.parse_device_address} ]
We are currently only getting data from the first section.
The text was updated successfully, but these errors were encountered:
Actually, the other sections are mostly for info we already know. Temp might be nice, but not sure of the value in the others.
Sorry, something went wrong.
No branches or pull requests
The renogy-bt project has a concept of sections for requesting different types of data from the BLE connection. E.g. for batteries:
We are currently only getting data from the first section.
The text was updated successfully, but these errors were encountered: