hass-core/homeassistant/components/zwave_js
2023-01-23 10:05:56 +01:00
..
docs
translations [ci skip] Translation update 2023-01-19 00:25:04 +00:00
triggers
__init__.py Remove unnecessary try-else (4) (#86161) 2023-01-18 13:17:08 +01:00
addon.py
api.py
binary_sensor.py
button.py String formatting and max line length - Part 7 (#84532) 2022-12-27 11:18:56 +01:00
climate.py
config_flow.py
config_validation.py
const.py
cover.py
device_action.py
device_automation_helpers.py
device_condition.py
device_trigger.py
diagnostics.py Adjust zwave_js diagnostics (#85524) 2023-01-09 14:33:09 +01:00
discovery.py
discovery_data_template.py Update Union typing (3) [Py310] (#86426) 2023-01-23 10:05:56 +01:00
entity.py
fan.py String formatting and max line length - Part 7 (#84532) 2022-12-27 11:18:56 +01:00
helpers.py
humidifier.py
light.py Clean up pylint warning in zwave_js light (#85149) 2023-01-04 21:13:59 -05:00
lock.py
logbook.py
manifest.json Fix Z-Wave JS sensor units and device classes (#85129) 2023-01-04 19:47:10 +01:00
migrate.py
number.py
README.md
select.py
sensor.py Fix Z-Wave JS sensor units and device classes (#85129) 2023-01-04 19:47:10 +01:00
services.py
services.yaml
siren.py
strings.json
switch.py
trigger.py
update.py String formatting and max line length - Part 7 (#84532) 2022-12-27 11:18:56 +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.