Search found 202 matches

by seattleneil
19 Dec 2024 21:34
Forum: Device specific
Topic: yale keyless connected not reporting status
Replies: 11
Views: 331

Re: yale keyless connected not reporting status

The log snippet provides useful information. You'll need to do additional testing to see what messages the lock sends when it's manually locked and unlocked. Based on the log information you provided, the Easy Scripting app should be able to solve your problem. The Easy Scripting app is very useful ...
by seattleneil
19 Dec 2024 01:47
Forum: Device specific
Topic: yale keyless connected not reporting status
Replies: 11
Views: 331

Re: yale keyless connected not reporting status

The error you reported "TypeError: Cannot read property 'data' of undefined" occurs if the device does not support the Supervision command class. You can check whether the Yale lock supports Supervision from the expert UI. Try browsing to the following: http://YOUR_ZWAY_IP:8083/expert/#/co...
by seattleneil
17 Dec 2024 20:51
Forum: Device specific
Topic: yale keyless connected not reporting status
Replies: 11
Views: 331

Re: yale keyless connected not reporting status

Here's a way to disable supervision from the command line: curl -u admin:ADMIN_PASSWORD_GOES_HERE --globoff http://127.0.0.1:8083/JS/Run/zway.devices[DEVICE_ID_GOES_HERE].instances[0].Supervision.data.disabled=true Please add a follow-up reply if this command causes the lock manual operation to be r...
by seattleneil
14 Dec 2024 18:00
Forum: RaZberry
Topic: Can't access z-wave after power cycling
Replies: 8
Views: 617

Re: Can't access z-wave after power cycling

Did you preserve the current Z-Way directory as a tar file named "z-way-server.tar"? If so, to restore your non-blanked config file, run the following command with z-way-server stopped: cd /opt; tar xvf z-way-server.tar z-way-server/automation/storage/configjson* Note that restoring the no...
by seattleneil
14 Dec 2024 06:14
Forum: RaZberry
Topic: Can't access z-wave after power cycling
Replies: 8
Views: 617

Re: Can't access z-wave after power cycling

Please edit your config file to look like the following which uses password 123456: "login":"admin","password":"wrPCmELDoCUuwoEKwrM+w7rDtVU9LiAFw7zCj0DDoiHDk8OWw4A0w4UFw53CkMK6w6V6XMOTMVtYaHx8NlwNwrIpVEgcVxfDmsOkasK8wpwxw5vDgsKLwoA0wrsX","name":"...
by seattleneil
14 Dec 2024 00:57
Forum: RaZberry
Topic: Can't access z-wave after power cycling
Replies: 8
Views: 617

Re: Can't access z-wave after power cycling

If you're not able to log onto Z-Way, there's a good chance 1 or more files needed by Z-Way have been corrupted. Ideally, you enabled Z-Way to create cloud backups or you made a recent local backup and you just need to do a restore from the UI (Settings->Backup & Restore). As a suggestion, befor...
by seattleneil
25 Nov 2024 20:21
Forum: RaZberry
Topic: Best recommended hardware and practice
Replies: 5
Views: 1221

Re: Best recommended hardware and practice

Regarding hardware, I suggest using either a Pi 3B or Pi 4, with a 32bit OS. I don't have a Pi 5 so I can't provide a recommendation about a Pi 5. The least complicated method (IMHO) is if you have a virgin Pi - you can download an SD card image from Z-Wave.me that includes the Pi OS and Z-way here:...
by seattleneil
14 Nov 2024 19:57
Forum: Discussions in English
Topic: API use and log error
Replies: 3
Views: 1988

Re: API use and log error

Please update Z-Way to the newest version (4.1.4) and see if that fixes the problem. The version you are using (3.0.4) is almost 4 years old. You can update Z-Way remotely from the command line. Run: PKG=z-way-4.1.4_armhf.deb && wget -O /tmp/$PKG https://storage.z-wave.me/z-way-server/$PKG &...
by seattleneil
05 Nov 2024 21:00
Forum: RaZberry
Topic: Replace razberry 1 shield with 7 pro: no devices
Replies: 7
Views: 1887

Re: Replace razberry 1 shield with 7 pro: no devices

Adding a new controller to the existing network and after testing I transferred the control to the newly added controller. Followed by removing the old controller. While this approach correctly configures the network ID of the new controller to be the same as the network ID of the old controller, t...
by seattleneil
10 Oct 2024 19:26
Forum: Todo for the software
Topic: HTTP Notification channel
Replies: 1
Views: 5985

Re: HTTP Notification channel

This response assumes you're familiar with python. Have you looked at the HTTPGet app? It will make a user-defined HTTP request whenever any device changes state. Using this app, I'm able to process any Z-Way device status changes inside a single python CGI script, where the CGI script can be used t...