hass-core/homeassistant/components/zwave_js
Raman Gupta 2e4d5aca09
Change zwave_js firmware update service API key (#77719)
* Change zwave_js firmware update service API key

* Update const.py
2022-09-02 16:50:05 +02:00
..
docs
translations [ci skip] Translation update 2022-08-16 00:30:51 +00:00
triggers Use TriggerActionType [w-z] (#76814) 2022-08-15 20:15:57 +02:00
__init__.py Add support for zwave_js firmware update service (#77401) 2022-08-30 12:49:27 -04:00
addon.py Fix zwave_js addon info (#76044) 2022-08-03 22:33:05 +02:00
api.py Bump zwave-js-server-python to 0.41.0 (#76903) 2022-08-27 21:27:41 -04:00
binary_sensor.py Use CO Device Class Instead of Gas in zwave_js (#75649) 2022-07-23 13:24:34 +02:00
button.py
climate.py Use _attr_precision in entities (#77477) 2022-08-29 22:02:29 +02:00
config_flow.py Add zwave_js usb port selection (#76385) 2022-08-07 11:06:03 -04:00
config_validation.py
const.py Change zwave_js firmware update service API key (#77719) 2022-09-02 16:50:05 +02:00
cover.py Clean up zwave_js logging and hass.data (#73856) 2022-06-22 21:35:26 +02:00
device_action.py
device_automation_helpers.py
device_condition.py Remove callback decorator from coroutine functions (#75626) 2022-07-22 19:09:02 +02:00
device_trigger.py Use TriggerActionType [w-z] (#76814) 2022-08-15 20:15:57 +02:00
diagnostics.py Fix KeyError from zwave_js diagnostics (#74579) 2022-07-09 00:20:44 +02:00
discovery.py Use Platform and ValueType enum in zwave_js.discovery (#77402) 2022-08-28 00:47:46 +02:00
discovery_data_template.py
entity.py Clean up zwave_js logging and hass.data (#73856) 2022-06-22 21:35:26 +02:00
fan.py Improve typing in fans and locks (#73901) 2022-06-23 16:34:40 +02:00
helpers.py
humidifier.py
light.py Clean up zwave_js logging and hass.data (#73856) 2022-06-22 21:35:26 +02:00
lock.py Clean up zwave_js logging and hass.data (#73856) 2022-06-22 21:35:26 +02:00
logbook.py
manifest.json Bump zwave-js-server-python to 0.41.0 (#76903) 2022-08-27 21:27:41 -04:00
migrate.py
number.py Migrate NumberEntity u-z to native_value (#73488) 2022-06-14 08:15:56 -10:00
README.md
select.py Improve type hints in zwave_js select entity (#76449) 2022-08-08 14:55:23 +02:00
sensor.py Clean up zwave_js logging and hass.data (#73856) 2022-06-22 21:35:26 +02:00
services.py
services.yaml
siren.py
strings.json
switch.py Clean up zwave_js logging and hass.data (#73856) 2022-06-22 21:35:26 +02:00
trigger.py Use TriggerActionType [w-z] (#76814) 2022-08-15 20:15:57 +02:00
update.py Simplify zwave_js update entity (#77572) 2022-08-30 22:02:13 -04: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.