├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── base.py ├── dbus_shelly.py ├── discovery.py ├── energymeter.py ├── meter.py ├── shelly_device.py ├── switch.py └── utils.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/README.md -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/base.py -------------------------------------------------------------------------------- /dbus_shelly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/dbus_shelly.py -------------------------------------------------------------------------------- /discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/discovery.py -------------------------------------------------------------------------------- /energymeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/energymeter.py -------------------------------------------------------------------------------- /meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/meter.py -------------------------------------------------------------------------------- /shelly_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/shelly_device.py -------------------------------------------------------------------------------- /switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/switch.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victronenergy/dbus-shelly/HEAD/utils.py --------------------------------------------------------------------------------