├── .gitignore ├── README.md ├── config.ini ├── dbus-shelly-3em-smartmeter.py ├── docs ├── shelly3em-status-sample.json └── shelly3em_datasource.png ├── img ├── venus-os-remote-console-overview.PNG ├── venus-os-shelly3em-smartmeter-devicedetails.PNG ├── venus-os-shelly3em-smartmeter.PNG └── venus-os-tile-overview.PNG ├── install.sh ├── restart.sh ├── service └── run └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/config.ini -------------------------------------------------------------------------------- /dbus-shelly-3em-smartmeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/dbus-shelly-3em-smartmeter.py -------------------------------------------------------------------------------- /docs/shelly3em-status-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/docs/shelly3em-status-sample.json -------------------------------------------------------------------------------- /docs/shelly3em_datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/docs/shelly3em_datasource.png -------------------------------------------------------------------------------- /img/venus-os-remote-console-overview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/img/venus-os-remote-console-overview.PNG -------------------------------------------------------------------------------- /img/venus-os-shelly3em-smartmeter-devicedetails.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/img/venus-os-shelly3em-smartmeter-devicedetails.PNG -------------------------------------------------------------------------------- /img/venus-os-shelly3em-smartmeter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/img/venus-os-shelly3em-smartmeter.PNG -------------------------------------------------------------------------------- /img/venus-os-tile-overview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/img/venus-os-tile-overview.PNG -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/install.sh -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/restart.sh -------------------------------------------------------------------------------- /service/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/service/run -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabian-lauer/dbus-shelly-3em-smartmeter/HEAD/uninstall.sh --------------------------------------------------------------------------------