hass-core/homeassistant/components/zwave_js
Franck Nijhof 939eef3b28
Remove translations from Core (#87543)
Co-authored-by: Erik Montnemery <erik@montnemery.com>
2023-02-06 15:06:43 +01:00
..
docs
triggers
__init__.py Simplify zwave_js code (#87235) 2023-02-05 01:20:17 +01:00
addon.py
api.py Add RF region property to zwave_js/network_status cmd (#87236) 2023-02-05 14:13:55 -05:00
binary_sensor.py
button.py
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 Simplify zwave_js code (#87235) 2023-02-05 01:20:17 +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 Simplify zwave_js code (#87235) 2023-02-05 01:20:17 +01:00
diagnostics.py
discovery.py Collection of code styling tweaks (#87344) 2023-02-03 23:51:27 +01: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.45.1 (#87309) 2023-02-04 11:23:48 +02:00
migrate.py Collection of code styling tweaks (#87344) 2023-02-03 23:51:27 +01:00
number.py
README.md
select.py
sensor.py Re-enabled Ruff E713 (#87301) 2023-02-03 16:18:33 +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
update.py Collection of code styling tweaks (#87344) 2023-02-03 23:51:27 +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.