├── .github └── workflows │ └── docker.yml ├── .gitignore ├── Dockerfile ├── README.md ├── ha-lovelace ├── lovalace.yaml └── lovalace_legacy_v4.0.0.yaml ├── icon.png ├── logo.png └── src ├── entrypoint.sh ├── fetch_bms_data.py └── ha_auto_discovery.py /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/README.md -------------------------------------------------------------------------------- /ha-lovelace/lovalace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/ha-lovelace/lovalace.yaml -------------------------------------------------------------------------------- /ha-lovelace/lovalace_legacy_v4.0.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/ha-lovelace/lovalace_legacy_v4.0.0.yaml -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/icon.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/logo.png -------------------------------------------------------------------------------- /src/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/src/entrypoint.sh -------------------------------------------------------------------------------- /src/fetch_bms_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/src/fetch_bms_data.py -------------------------------------------------------------------------------- /src/ha_auto_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privatecoder/seplos-mqtt-remote-rs485/HEAD/src/ha_auto_discovery.py --------------------------------------------------------------------------------