mirror of
https://github.com/hassio-addons/repository.git
synced 2025-05-06 20:21:26 +00:00
🎉 Release of add-on Z-Wave to MQTT 0.1.0
This commit is contained in:
parent
61968fc7ab
commit
5c28a59d40
6 changed files with 117 additions and 0 deletions
1
zwave2mqtt/CHANGELOG.md
Normal file
1
zwave2mqtt/CHANGELOG.md
Normal file
|
@ -0,0 +1 @@
|
|||
🎉 Initial release 🎉
|
46
zwave2mqtt/README.md
Normal file
46
zwave2mqtt/README.md
Normal file
|
@ -0,0 +1,46 @@
|
|||
# Community Hass.io Add-ons: Z-Wave to MQTT
|
||||
|
||||
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
|
||||
|
||||
[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum]
|
||||
|
||||
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
|
||||
|
||||
[![Support my work on Patreon][patreon-shield]][patreon]
|
||||
|
||||
Fully configurable Z-Wave to MQTT gateway and control panel.
|
||||
|
||||
![Z-Wave to MQTT][logo]
|
||||
|
||||
## About
|
||||
|
||||
The Z-Wave to MQTT add-on allows you to decouple your Z-Wave network from
|
||||
your Home Assistant instance by leveraging your MQTT broker. It ships with
|
||||
a web-based control panel, allowing you to configure every aspect of your
|
||||
Z-Wave network and how they are published in MQTT.
|
||||
|
||||
Some advantages and use-cases for this are:
|
||||
|
||||
- Your Z-Wave network will keep running between Home Assistant restarts.
|
||||
- You can directly use things like Node-RED with your Z-Wave network, while
|
||||
it is available for Home Assistant at the same time.
|
||||
- Allow [ESPHome.io][esphome] based ESP devices to directly respond or work
|
||||
with your Z-Wave network.
|
||||
|
||||
[Click here for the full documentation][docs]
|
||||
|
||||
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
|
||||
[buymeacoffee]: https://www.buymeacoffee.com/frenck
|
||||
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
|
||||
[discord]: https://discord.me/hassioaddons
|
||||
[docs]: https://github.com/hassio-addons/addon-zwave2mqtt/blob/v0.1.0/README.md
|
||||
[esphome]: https://esphome.io/components/mqtt.html#on-message-trigger
|
||||
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
|
||||
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-z-wave-to-mqtt/115899?u=frenck
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
|
||||
[patreon-shield]: https://www.frenck.nl/images/patreon.png
|
||||
[patreon]: https://www.patreon.com/frenck
|
||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
|
||||
[release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-zwave2mqtt/tree/v0.1.0
|
||||
[logo]: https://github.com/hassio-addons/addon-zwave2mqtt/raw/master/zwave2mqtt/logo.png
|
45
zwave2mqtt/config.json
Normal file
45
zwave2mqtt/config.json
Normal file
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"name": "Z-Wave to MQTT",
|
||||
"version": "0.1.0",
|
||||
"slug": "zwave2mqtt",
|
||||
"description": "Fully configurable Z-Wave to MQTT gateway and control panel",
|
||||
"url": "https://github.com/hassio-addons/addon-zwave2mqtt",
|
||||
"webui": "http://[HOST]:[PORT:8091]",
|
||||
"startup": "system",
|
||||
"arch": [
|
||||
"aarch64",
|
||||
"amd64",
|
||||
"armhf",
|
||||
"armv7",
|
||||
"i386"
|
||||
],
|
||||
"ports": {
|
||||
"8091/tcp": 8091
|
||||
},
|
||||
"ports_description": {
|
||||
"8091/tcp": "Z-Wave to MQTT Control Panel"
|
||||
},
|
||||
"boot": "auto",
|
||||
"auth_api": true,
|
||||
"hassio_api": true,
|
||||
"hassio_role": "default",
|
||||
"auto_uart": true,
|
||||
"map": [
|
||||
"config:rw",
|
||||
"share:rw",
|
||||
"ssl:rw"
|
||||
],
|
||||
"options": {
|
||||
"ssl": true,
|
||||
"certfile": "fullchain.pem",
|
||||
"keyfile": "privkey.pem"
|
||||
},
|
||||
"schema": {
|
||||
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
|
||||
"ssl": "bool",
|
||||
"certfile": "str",
|
||||
"keyfile": "str",
|
||||
"leave_front_door_open": "bool?"
|
||||
},
|
||||
"image": "hassioaddons/zwave2mqtt-{arch}"
|
||||
}
|
BIN
zwave2mqtt/icon.png
Normal file
BIN
zwave2mqtt/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 53 KiB |
BIN
zwave2mqtt/logo.png
Normal file
BIN
zwave2mqtt/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 121 KiB |
Loading…
Add table
Add a link
Reference in a new issue