Wanfr
January 4, 2021, 10:31pm
1
hello and happy new year to all
I am new with HA and with English I am French !
I wanted to start by including z-wave because I have quite a lot of equipment to this standard…
I have a flash drive aeotec Z-Stick Gen5 on the usb port /dev/ttyAMA0
But I can’t start the z-wave network
HA 2020.12.7
RPI4 8G
journal OWZ “Detail, contrlr, Notification: DriverFailed”
configuration.yaml :
"default_config:
tts:
platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yamll"
I must have missed something like all the beginners but I don’t see, can you help me ?
merci
@+
basti4k
(Sebastian)
January 5, 2021, 4:15pm
2
USB or RAZBERRY2 ?
We need more Infos from the OpenZWave Config
CO_4X4
(Colorado Four Wheeler)
January 5, 2021, 5:10pm
3
I don’t see any Z-Wave config in your YAML (network key is if you want to control secure devices like a lock, and this is not my real network key, it was changed to protect the innocent):
zwave:
usb_path: /dev/ttyACM0
device_config: !include zwave_device_config.yaml
network_key: "0x11, 0x8A, 0xCA, 0xA8, 0xD6, 0x00, 0x76, 0x5C, 0x76, 0xBC, 0xE6, 0xCE, 0x4B, 0xB5, 0x22, 0x3D"
Wanfr
January 5, 2021, 5:56pm
4
hello
how, where to find the network key ?
thank you very much
basti4k
(Sebastian)
January 5, 2021, 6:06pm
5
@Wanfr plz read first this:
and this:
# Home Assistant Add-on: OpenZWave
## Installation
Follow these steps to get the add-on installed on your system:
1. Navigate in your Home Assistant frontend to **Supervisor** -> **Add-on Store**.
2. Find the "OpenZWave" add-on and click it.
3. Click on the "INSTALL" button.
4. This add-on currently requires to have the Mosquitto add-on installed.
Please make sure to install and set up that add-on before continuing.
## How to use
The add-on needs to know where your Z-Wave stick can be found, and therefore,
you'll need to configure the add-on to point to the right device.
If you're using Home Assistant you may find the correct value for this on the
`Supervisor -> System -> Host system -> Hardware` page. It is recommended
to use a "by-id" path to the device if one exists, as it is not subject to
This file has been truncated. show original
CO_4X4
(Colorado Four Wheeler)
January 5, 2021, 6:09pm
6
You can generate it from a shell prompt on the HA system:
cat /dev/urandom | tr -dc '0-9A-F' | fold -w 32 | head -n 1 | sed -e 's/\(..\)/0x\1, /g' -e 's/, $//'
1 Like