mirror of
https://github.com/hassio-addons/repository-beta.git
synced 2025-05-05 19:41:27 +00:00
🔥 Remove deprecated Z-Wave2MQTT add-on (#27)
This commit is contained in:
parent
cf8dad4605
commit
98c91ab35d
7 changed files with 0 additions and 318 deletions
|
@ -165,10 +165,6 @@ addons:
|
||||||
repository: hassio-addons/addon-zerotier
|
repository: hassio-addons/addon-zerotier
|
||||||
target: zerotier
|
target: zerotier
|
||||||
image: ghcr.io/hassio-addons/zerotier/{arch}
|
image: ghcr.io/hassio-addons/zerotier/{arch}
|
||||||
zwave2mqtt:
|
|
||||||
repository: hassio-addons/addon-zwave2mqtt
|
|
||||||
target: zwave2mqtt
|
|
||||||
image: ghcr.io/hassio-addons/zwave2mqtt/{arch}
|
|
||||||
zwavejs2mqtt:
|
zwavejs2mqtt:
|
||||||
repository: hassio-addons/addon-zwavejs2mqtt
|
repository: hassio-addons/addon-zwavejs2mqtt
|
||||||
target: zwavejs2mqtt
|
target: zwavejs2mqtt
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
## What’s changed
|
|
||||||
|
|
||||||
⚠️ **This add-on is now deprecated.**
|
|
||||||
|
|
||||||
The upstream project has been archived and will no longer receive updates. Therefore, there is no other solution but to deprecate the add-on as well.
|
|
||||||
|
|
||||||
Please use the Z-Wave JS to MQTT add-on instead, this add-on will be removed from the add-on store soon.
|
|
||||||
|
|
||||||
## 🚨 Breaking changes
|
|
||||||
|
|
||||||
- Deprecate add-on @frenck (#104)
|
|
||||||
|
|
||||||
## ⬆️ Dependency updates
|
|
||||||
|
|
||||||
- ⬆ Upgrades git to 2.30.1-r0 @frenck (#93)
|
|
||||||
- ⬆️ Bump release-drafter/release-drafter from v5.13.0 to v5.14.0 @dependabot (#94)
|
|
||||||
- ⬆️ Bump docker/build-push-action from v2.2.2 to v2.3.0 @dependabot (#96)
|
|
||||||
- ⬆️ Bump actions/stale from v3.0.16 to v3.0.17 @dependabot (#97)
|
|
||||||
- ⬆️ Bump actions/stale from v3.0.17 to v3.0.18 @dependabot (#99)
|
|
||||||
- ⬆️ Bump release-drafter/release-drafter from v5.14.0 to v5.15.0 @dependabot (#100)
|
|
||||||
- ⬆️ Bump frenck/action-addon-linter from v2.0.0 to v2.1 @dependabot (#101)
|
|
||||||
- ⬆️ Bump ludeeus/action-shellcheck from 1.0.0 to 1.1.0 @dependabot (#102)
|
|
||||||
- Fix add-on build @frenck (#103)
|
|
|
@ -1,188 +0,0 @@
|
||||||
# Home Assistant Community Add-on: Z-Wave to MQTT
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
This add-on uses the [Zwave2Mqtt][zwave2mqtt] software provided by OpenZWave.
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
The installation of this add-on is pretty straightforward and not different in
|
|
||||||
comparison to installing any other Home Assistant add-on.
|
|
||||||
|
|
||||||
1. Search for the "Z-Wave to MQTT" add-on in the Supervisor add-on store
|
|
||||||
and install it.
|
|
||||||
1. Start the "Z-Wave to MQTT" add-on.
|
|
||||||
1. Check the logs of the "Z-Wave to MQTT" add-on to see if everything went well.
|
|
||||||
1. Click the "OPEN WEB UI" button.
|
|
||||||
1. Enjoy the add-on!
|
|
||||||
|
|
||||||
**NOTE**: The upstream project has documentation on using the software itself:
|
|
||||||
<https://github.com/OpenZWave/Zwave2Mqtt>
|
|
||||||
|
|
||||||
## Configuration
|
|
||||||
|
|
||||||
**Note**: _Remember to restart the add-on when the configuration is changed._
|
|
||||||
|
|
||||||
Example add-on configuration:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
log_level: info
|
|
||||||
ssl: true
|
|
||||||
certfile: fullchain.pem
|
|
||||||
keyfile: privkey.pem
|
|
||||||
```
|
|
||||||
|
|
||||||
**Note**: _This is just an example, don't copy and paste it! Create your own!_
|
|
||||||
|
|
||||||
### Option: `log_level`
|
|
||||||
|
|
||||||
The `log_level` option controls the level of log output by the addon and can
|
|
||||||
be changed to be more or less verbose, which might be useful when you are
|
|
||||||
dealing with an unknown issue. Possible values are:
|
|
||||||
|
|
||||||
- `trace`: Show every detail, like all called internal functions.
|
|
||||||
- `debug`: Shows detailed debug information.
|
|
||||||
- `info`: Normal (usually) interesting events.
|
|
||||||
- `warning`: Exceptional occurrences that are not errors.
|
|
||||||
- `error`: Runtime errors that do not require immediate action.
|
|
||||||
- `fatal`: Something went terribly wrong. Add-on becomes unusable.
|
|
||||||
|
|
||||||
Please note that each level automatically includes log messages from a
|
|
||||||
more severe level, e.g., `debug` also shows `info` messages. By default,
|
|
||||||
the `log_level` is set to `info`, which is the recommended setting unless
|
|
||||||
you are troubleshooting.
|
|
||||||
|
|
||||||
### Option: `ssl`
|
|
||||||
|
|
||||||
Enables/Disables SSL on the control panel. Set it `true` to enable it,
|
|
||||||
`false` otherwise.
|
|
||||||
|
|
||||||
### Option: `certfile`
|
|
||||||
|
|
||||||
The certificate file to use for SSL.
|
|
||||||
|
|
||||||
**Note**: _The file MUST be stored in `/ssl/`, which is the default_
|
|
||||||
|
|
||||||
### Option: `keyfile`
|
|
||||||
|
|
||||||
The private key file to use for SSL.
|
|
||||||
|
|
||||||
**Note**: _The file MUST be stored in `/ssl/`, which is the default_
|
|
||||||
|
|
||||||
### Option: `leave_front_door_open`
|
|
||||||
|
|
||||||
Adding this option to the add-on configuration allows you to disable
|
|
||||||
authentication on the add-on by setting it to `true` and leaving the
|
|
||||||
username and password empty.
|
|
||||||
|
|
||||||
**Note**: _We STRONGLY suggest, not to use this, even if this add-on is
|
|
||||||
only exposed to your internal network. USE AT YOUR OWN RISK!_
|
|
||||||
|
|
||||||
## Embedding into Home Assistant
|
|
||||||
|
|
||||||
It is possible to embed the Z-Wave to MQTT control panel web interface directly
|
|
||||||
into Home Assistant, allowing you to access it through the Home Assistant
|
|
||||||
frontend.
|
|
||||||
|
|
||||||
Home Assistant provides the `panel_iframe` integration, for these purposes.
|
|
||||||
|
|
||||||
Example configuration:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
panel_iframe:
|
|
||||||
zwave2mqtt:
|
|
||||||
title: Z-Wave to MQTT
|
|
||||||
icon: mdi:z-wave
|
|
||||||
url: http://addres.to.your.hass.io:8091
|
|
||||||
```
|
|
||||||
|
|
||||||
## Known issues and limitations
|
|
||||||
|
|
||||||
- This add-on is currently unable to support Hass.io Ingress. This is due to
|
|
||||||
technical limitations of the zwave2mqtt control panel web interface.
|
|
||||||
- If the OpenZwave device database doesn't seem to be loaded. Device names
|
|
||||||
and options are missing: Go to Settings -> Zwave -> Config Path and set it
|
|
||||||
to `/etc/openzwave`.
|
|
||||||
|
|
||||||
## Changelog & Releases
|
|
||||||
|
|
||||||
This repository keeps a change log using [GitHub's releases][releases]
|
|
||||||
functionality.
|
|
||||||
|
|
||||||
Releases are based on [Semantic Versioning][semver], and use the format
|
|
||||||
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
|
|
||||||
based on the following:
|
|
||||||
|
|
||||||
- `MAJOR`: Incompatible or major changes.
|
|
||||||
- `MINOR`: Backwards-compatible new features and enhancements.
|
|
||||||
- `PATCH`: Backwards-compatible bugfixes and package updates.
|
|
||||||
|
|
||||||
## Support
|
|
||||||
|
|
||||||
Got questions?
|
|
||||||
|
|
||||||
You have several options to get them answered:
|
|
||||||
|
|
||||||
- The [Home Assistant Community Add-ons Discord chat server][discord] for add-on
|
|
||||||
support and feature requests.
|
|
||||||
- The [Home Assistant Discord chat server][discord-ha] for general Home
|
|
||||||
Assistant discussions and questions.
|
|
||||||
- The Home Assistant [Community Forum][forum].
|
|
||||||
- Join the [Reddit subreddit][reddit] in [/r/homeassistant][reddit]
|
|
||||||
|
|
||||||
You could also [open an issue here][issue] GitHub.
|
|
||||||
|
|
||||||
## Authors & contributors
|
|
||||||
|
|
||||||
The original setup of this repository is by [Franck Nijhof][frenck].
|
|
||||||
|
|
||||||
For a full list of all authors and contributors,
|
|
||||||
check [the contributor's page][contributors].
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2019-2021 Franck Nijhof
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
|
|
||||||
[contributors]: https://github.com/hassio-addons/addon-zwave2mqtt/graphs/contributors
|
|
||||||
[discord-ha]: https://discord.gg/c5DvZ4e
|
|
||||||
[discord]: https://discord.me/hassioaddons
|
|
||||||
[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/home-assistant-community-add-on-z-wave-to-mqtt/115899?u=frenck
|
|
||||||
[frenck]: https://github.com/frenck
|
|
||||||
[issue]: https://github.com/hassio-addons/addon-zwave2mqtt/issues
|
|
||||||
[reddit]: https://reddit.com/r/homeassistant
|
|
||||||
[releases]: https://github.com/hassio-addons/addon-zwave2mqtt/releases
|
|
||||||
[semver]: http://semver.org/spec/v2.0.0.htm
|
|
||||||
[zwave2mqtt]: https://github.com/OpenZWave/Zwave2Mqtt
|
|
|
@ -1,59 +0,0 @@
|
||||||
# Home Assistant Community Add-on: 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]
|
|
||||||
|
|
||||||
[![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors]
|
|
||||||
|
|
||||||
[![Support Frenck 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.
|
|
||||||
|
|
||||||
## WARNING! THIS IS A BETA VERSION!
|
|
||||||
|
|
||||||
This Home Assistant Add-ons repository contains beta releases of add-ons.
|
|
||||||
|
|
||||||
- They might stop working at any time.
|
|
||||||
- They could have a negative impact on your system.
|
|
||||||
|
|
||||||
This repository was created for:
|
|
||||||
|
|
||||||
- Anybody willing to test.
|
|
||||||
- Anybody interested in trying out upcoming add-ons or add-on features.
|
|
||||||
|
|
||||||
If you are more interested in stable releases of our add-ons:
|
|
||||||
|
|
||||||
<https://github.com/hassio-addons/repository>
|
|
||||||
|
|
||||||
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
|
|
||||||
[discord]: https://discord.me/hassioaddons
|
|
||||||
[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/home-assistant-community-add-on-z-wave-to-mqtt/115899?u=frenck
|
|
||||||
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
|
|
||||||
[github-sponsors]: https://github.com/sponsors/frenck
|
|
||||||
[logo]: https://github.com/hassio-addons/addon-zwave2mqtt/raw/main/zwave2mqtt/logo.png
|
|
||||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg
|
|
||||||
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/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.10.0-blue.svg
|
|
||||||
[release]: https://github.com/hassio-addons/addon-zwave2mqtt/tree/v0.10.0
|
|
|
@ -1,44 +0,0 @@
|
||||||
{
|
|
||||||
"name": "Z-Wave to MQTT (DEPRECATED)",
|
|
||||||
"stage": "deprecated",
|
|
||||||
"version": "0.10.0",
|
|
||||||
"slug": "zwave2mqtt",
|
|
||||||
"description": "Fully configurable Z-Wave to MQTT gateway and control panel",
|
|
||||||
"url": "https://github.com/hassio-addons/addon-zwave2mqtt",
|
|
||||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:8091]",
|
|
||||||
"startup": "system",
|
|
||||||
"init": false,
|
|
||||||
"arch": [
|
|
||||||
"aarch64",
|
|
||||||
"amd64",
|
|
||||||
"armhf",
|
|
||||||
"armv7",
|
|
||||||
"i386"
|
|
||||||
],
|
|
||||||
"ports": {
|
|
||||||
"8091/tcp": 8091
|
|
||||||
},
|
|
||||||
"ports_description": {
|
|
||||||
"8091/tcp": "Z-Wave to MQTT Control Panel"
|
|
||||||
},
|
|
||||||
"auth_api": true,
|
|
||||||
"uart": true,
|
|
||||||
"map": [
|
|
||||||
"config:rw",
|
|
||||||
"share:rw",
|
|
||||||
"ssl:rw"
|
|
||||||
],
|
|
||||||
"options": {
|
|
||||||
"ssl": true,
|
|
||||||
"certfile": "fullchain.pem",
|
|
||||||
"keyfile": "privkey.pem"
|
|
||||||
},
|
|
||||||
"schema": {
|
|
||||||
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
|
||||||
"ssl": "bool",
|
|
||||||
"certfile": "str",
|
|
||||||
"keyfile": "str",
|
|
||||||
"leave_front_door_open": "bool?"
|
|
||||||
},
|
|
||||||
"image": "ghcr.io/hassio-addons/zwave2mqtt/{arch}"
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 53 KiB |
Binary file not shown.
Before Width: | Height: | Size: 121 KiB |
Loading…
Add table
Add a link
Reference in a new issue