core/homeassistant/components/zwave_js
Marc Mueller c07646db5d
Update typing syntax (#49480)
* Update typing syntax

* Replace typing imports with ones from collections where possible

* Changes after review
2021-04-20 17:40:41 +02:00
..
docs
translations [ci skip] Translation update 2021-04-13 00:04:04 +00:00
README.md
__init__.py Don't assert the device registry entry in zwave_js (#49178) 2021-04-13 11:32:17 -04:00
addon.py
api.py Add zwave_js WS API command to call node.refresh_info (#48564) 2021-04-02 00:35:13 +02:00
binary_sensor.py
climate.py Add min and max temp properties to zwave_js.climate (#49125) 2021-04-12 22:12:38 +02:00
config_flow.py Explicitly define all methods in ConfigFlow (#49341) 2021-04-17 12:42:31 +02:00
const.py Lazy load zwave_js platforms when the first entity needs to be created (#49016) 2021-04-12 20:26:49 -04:00
cover.py
discovery.py Update typing syntax (#49480) 2021-04-20 17:40:41 +02:00
entity.py
fan.py
helpers.py
light.py
lock.py
manifest.json Add support for IoT class in manifest (#46935) 2021-04-15 10:21:38 +02:00
migrate.py Migrate existing zwave_js entities if endpoint has changed (#48963) 2021-04-13 16:37:55 +02:00
number.py
sensor.py
services.py Add zwave_js.set_value service (#48487) 2021-03-30 11:13:48 +02:00
services.yaml Add zwave_js.set_value service (#48487) 2021-03-30 11:13:48 +02:00
strings.json
switch.py

README.md

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.