python library for interacting with Fronius inverters via modbus/TCP. Includes some example utilities
Find a file
2024-10-12 21:37:24 +11:00
examples Simplyfiy and format read_regs examle 2024-10-12 21:37:24 +11:00
src another string register 2024-10-12 20:37:33 +11:00
tests remove test that doesn't work 2024-10-12 20:37:10 +11:00
.gitignore python gitignore 2024-10-12 20:59:05 +11:00
DesignNotes.md read_regs working, design notes added 2024-10-08 17:44:29 +11:00
LICENSE rename license file 2024-10-08 16:33:21 +11:00
noxfile.py README updates, some documentation 2024-10-11 14:58:36 +11:00
pyproject.toml nox running! 2024-10-09 18:18:24 +11:00
README.md Add some string reading bits, SerialNumber test failing 2024-10-12 17:37:46 +11:00

pyFroniusReg

The aim of this python library is to provide some nice to use abstractions to interact with Fronius solar inverters and storage systems over ModBus. It is tested on a Gen24 Primo 5kW system with an attached BYD battery storage system using 'float' mode of the sunspec ModBus over TCP protocol.

Examples

force_charge.py: Use the library to force my system to charge at 2.5kW

reset_charge.py: Use the library to set my system back to defaults

read_regs.py: Use the library to read some relevant registers

Acknowledgements

A lot of ideas and some orignating code came from: https://github.com/oscarknapp/Fronius-Gen-24-Modbus-Integration/tree/main

Special thanks to VK2TTY <@vk2tty@mastodon.radio> for their generous assistance in bringing me up to speed with a more pythonic way of doing things!