Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add directions to access the UI from within HA #205

Merged
merged 8 commits into from
Jan 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/guide/homeassistant.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,19 @@ zwavejs2mqtt to resend the cached values when Home Assistant restarts.

zwavejs2mqtt try to do its best to guess how to map devices from Zwave to HASS. At the moment it try to guess the device to generate based on zwave values command classes, index and units of the value. When the discovered device doesn't fit your needs you can you can set custom a `device_class` to values using Gateway value table.

## Accessing zwavejs2mqtt From Within Home Assistant

The zwavejs2mqtt Control Panel UI can be accessed from within Home Assistant by adding the following to a Lovelace dashboard using the Raw Configuration Editor, substituting your IP address.

```yaml
- title: zwavejs2mqtt
panel: true
cards:
- type: iframe
url: '[PUT IP ADDRESS HERE]:8091/'
aspect_ratio: 100%
```

## Components management

To see the components that have been discovered by zwavejs2mqtt go to Control Panel UI, select a Node from the Nodes table then select the Node tab from tabs menu at the bottom of Nodes table. Now at the Bottom of the page, after Node values section you can find a new section called `Home Assistant - Devices`. Here you will see a table with all devices created for the selected node.
Expand Down
Loading