├── .coveragerc ├── .gitattributes ├── GitVersion.yml ├── LICENSE ├── config.example ├── constants.py ├── dbus_opendtu.py ├── dbus_service.py ├── docs ├── ahoy_0.5.93_inverter-id-0.json ├── ahoy_0.5.93_inverter-id-1.json ├── ahoy_0.5.93_live.json ├── ahoy_0.5.93_record-live.json ├── ahoy_0.6.9_live.json ├── ahoy_0.7.36_live_gap_in_inverter_sequence.json ├── ahoy_pre_0.5.93.json ├── opendtu_status.json ├── opendtu_v24.2.12_inverter.json ├── opendtu_v24.2.12_livedata_status.json └── tasmota_shelly_2pm.json ├── helpers.py ├── imports.py ├── install.sh ├── restart.sh ├── run_coverage.sh ├── service ├── log │ └── run └── run ├── tests.py ├── tests ├── __init__.py ├── test_dbus_opendtu.py ├── test_dbus_service.py └── test_helpers.py ├── uninstall.sh ├── update.sh └── version.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/.gitattributes -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/LICENSE -------------------------------------------------------------------------------- /config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/config.example -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/constants.py -------------------------------------------------------------------------------- /dbus_opendtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/dbus_opendtu.py -------------------------------------------------------------------------------- /dbus_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/dbus_service.py -------------------------------------------------------------------------------- /docs/ahoy_0.5.93_inverter-id-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/ahoy_0.5.93_inverter-id-0.json -------------------------------------------------------------------------------- /docs/ahoy_0.5.93_inverter-id-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/ahoy_0.5.93_inverter-id-1.json -------------------------------------------------------------------------------- /docs/ahoy_0.5.93_live.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/ahoy_0.5.93_live.json -------------------------------------------------------------------------------- /docs/ahoy_0.5.93_record-live.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/ahoy_0.5.93_record-live.json -------------------------------------------------------------------------------- /docs/ahoy_0.6.9_live.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/ahoy_0.6.9_live.json -------------------------------------------------------------------------------- /docs/ahoy_0.7.36_live_gap_in_inverter_sequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/ahoy_0.7.36_live_gap_in_inverter_sequence.json -------------------------------------------------------------------------------- /docs/ahoy_pre_0.5.93.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/ahoy_pre_0.5.93.json -------------------------------------------------------------------------------- /docs/opendtu_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/opendtu_status.json -------------------------------------------------------------------------------- /docs/opendtu_v24.2.12_inverter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/opendtu_v24.2.12_inverter.json -------------------------------------------------------------------------------- /docs/opendtu_v24.2.12_livedata_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/opendtu_v24.2.12_livedata_status.json -------------------------------------------------------------------------------- /docs/tasmota_shelly_2pm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/docs/tasmota_shelly_2pm.json -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/helpers.py -------------------------------------------------------------------------------- /imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/imports.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/install.sh -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/restart.sh -------------------------------------------------------------------------------- /run_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/run_coverage.sh -------------------------------------------------------------------------------- /service/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/service/log/run -------------------------------------------------------------------------------- /service/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/service/run -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/tests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dbus_opendtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/tests/test_dbus_opendtu.py -------------------------------------------------------------------------------- /tests/test_dbus_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/tests/test_dbus_service.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/uninstall.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henne49/dbus-opendtu/HEAD/update.sh -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | Version: 2.1.2 2 | --------------------------------------------------------------------------------