hass-core/homeassistant/components/zwave_js
2023-03-01 08:02:34 +01:00
..
docs
triggers
__init__.py Adjust entity registry access in integrations (1) (#88946) 2023-03-01 08:02:34 +01:00
addon.py
api.py Add support for firmware target in zwave_js FirmwareUploadView (#88523) 2023-02-23 13:24:55 -05:00
binary_sensor.py Move EntityCategory to homeassistant.const (#87792) 2023-02-09 20:15:37 +01:00
button.py Move EntityCategory to homeassistant.const (#87792) 2023-02-09 20:15:37 +01:00
climate.py Collection of code styling tweaks (#87344) 2023-02-03 23:51:27 +01:00
config_flow.py
config_validation.py
const.py
cover.py
device_action.py Adjust entity registry access in integrations (1) (#88946) 2023-03-01 08:02:34 +01:00
device_automation_helpers.py
device_condition.py Simplify zwave_js code (#87235) 2023-02-05 01:20:17 +01:00
device_trigger.py Adjust entity registry access in integrations (1) (#88946) 2023-03-01 08:02:34 +01:00
diagnostics.py Adjust zwave_js diagnostics (#85524) 2023-01-09 14:33:09 +01:00
discovery.py Add ZWaveDiscoverySchema for Merten 507801 (#88342) 2023-03-01 00:47:47 -05:00
discovery_data_template.py Enable Ruff D212 (#87347) 2023-02-03 23:08:48 +01:00
entity.py Enable Ruff D212 (#87347) 2023-02-03 23:08:48 +01:00
fan.py Enable Ruff D212 (#87347) 2023-02-03 23:08:48 +01:00
helpers.py Enable Ruff D212 (#87347) 2023-02-03 23:08:48 +01:00
humidifier.py
light.py Collection of code styling tweaks (#87344) 2023-02-03 23:51:27 +01:00
lock.py
logbook.py
manifest.json Bump zwave-js-server-python to 0.46.0 (#88520) 2023-02-21 07:15:55 +01:00
migrate.py Collection of code styling tweaks (#87344) 2023-02-03 23:51:27 +01:00
number.py
README.md
select.py Move EntityCategory to homeassistant.const (#87792) 2023-02-09 20:15:37 +01:00
sensor.py Move EntityCategory to homeassistant.const (#87792) 2023-02-09 20:15:37 +01:00
services.py Collection of code styling tweaks (#87344) 2023-02-03 23:51:27 +01:00
services.yaml
siren.py
strings.json
switch.py Collection of code styling tweaks (#87344) 2023-02-03 23:51:27 +01:00
trigger.py Improve type hint in zwave_js trigger (#88597) 2023-02-22 13:39:28 +01:00
update.py Move EntityCategory to homeassistant.const (#87792) 2023-02-09 20:15:37 +01:00

Z-Wave JS Architecture

This document describes the architecture of Z-Wave JS in Home Assistant and how the integration is connected all the way to the Z-Wave USB stick controller.

Architecture

Connection diagram

alt text

Z-Wave USB stick

Communicates with devices via the Z-Wave radio and stores device pairing.

Z-Wave JS

Represents the USB stick serial protocol as devices.

Z-Wave JS Server

Forward the state of Z-Wave JS over a WebSocket connection.

Z-Wave JS Server Python

Consumes the WebSocket connection and makes the Z-Wave JS state available in Python.

Z-Wave JS integration

Represents Z-Wave devices in Home Assistant and allows control.

Home Assistant

Best home automation platform in the world.

Running Z-Wave JS Server

alt text

Z-Wave JS Server can be run as a standalone Node app.

It can also run as part of Z-Wave JS 2 MQTT, which is also a standalone Node app.

Both apps are available as Home Assistant add-ons. There are also Docker containers etc.