Search found 688 matches

by pofs
03 Nov 2015 17:41
Forum: Discussions in English
Topic: Z-Wave.Me and readonly system on Raspberry Pi
Replies: 2
Views: 3226

Re: Z-Wave.Me and readonly system on Raspberry Pi

Config should be preserved between runs, because it holds your devices' states and network encryption key. If lost, all your secure devices will fail to work. So at least config/zddx subfolder should be persistent. You might make it readonly after including all the devices, but you will have issues ...
by pofs
20 Oct 2015 02:16
Forum: RaZberry
Topic: Error handling data from server
Replies: 1
Views: 3522

Re: Error handling data from server

Invalid config means there's some folders missing under /opt/z-way-server (like translations, zddx or config).
Please check if these folders are present.
by pofs
18 Oct 2015 23:18
Forum: RaZberry
Topic: False trigger?
Replies: 4
Views: 4896

Re: False trigger?

Yes, it is. You may peek at type constants in ZWave module: this.ZWAY_DATA_CHANGE_TYPE = { "Updated": 0x01, // Value updated or child created "Invalidated": 0x02, // Value invalidated "Deleted": 0x03, // Data holder deleted - callback is called last time before being de...
by pofs
18 Oct 2015 15:29
Forum: RaZberry
Topic: False trigger?
Replies: 4
Views: 4896

Re: False trigger?

Whether there's such a feature, it depends on your device. But the packet from the log looks like there is. The device sends battery level, alarm status, luminosity and temperature as one packet. It is hardly a coincidence. Gui probably checks the "phantom update" flag on change type, and ...
by pofs
17 Oct 2015 21:14
Forum: Обсуждение на русском / Discussions in Russian
Topic: NodeId из Virtual Device
Replies: 4
Views: 7880

Re: NodeId из Virtual Device

Без понятия. Я не занимаюсь js :)
by pofs
17 Oct 2015 21:11
Forum: Discussions in English
Topic: Smarthome UI device status
Replies: 7
Views: 8252

Re: Smarthome UI device status

Smarthome UI already has a job that polls values every two seconds or so. That is how it gets updated. I'm not sure about your device, but since it is dual switch, it should be MultiChannel with separate channels for each button, right? And report in the log reports value twice, and both times for d...
by pofs
17 Oct 2015 21:03
Forum: Device specific
Topic: FGRM 222 and Venetian blinds
Replies: 13
Views: 26940

Re: FGRM 222 and Venetian blinds

It is currently impossible to get it, because as I've said, ManufacturerProprietary command class is not implemented, so its report will be ignored. And as I understand the MiCasaVerde topic, lamellas report is sent as a ManufacturerProprietary extension.

I'll think about adding it to zway.
by pofs
17 Oct 2015 18:44
Forum: Discussions in English
Topic: Smarthome UI device status
Replies: 7
Views: 8252

Re: Smarthome UI device status

The entire SmartHome UI is based on polls for some reason (and I don't know why), so that probably answers your question :)
by pofs
17 Oct 2015 17:57
Forum: Обсуждение на русском / Discussions in Russian
Topic: NodeId из Virtual Device
Replies: 4
Views: 7880

Re: NodeId из Virtual Device

На данный момент нет. И из этой строки желательно доставать также имя ZWave Binding-а, а не только номер устройства, чтобы если вдруг их будет несколько, это не стало сюрпризом )
by pofs
17 Oct 2015 17:44
Forum: Device specific
Topic: FGRM 222 and Venetian blinds
Replies: 13
Views: 26940

Re: FGRM 222 and Venetian blinds

Command class 145 is Manufacturer Proprietary, it is not standardized and not supported directly in Z-Way. But you also can send a low-level SendData in a similar way: http://.../ZWaveAPI/Run/SendData(node_id, [ 145, 1, 15, 38, 1, 1, 0, whatever ]) or from JS: zway.SendData(node_id, [ 145, 1, 15, 38...