Search found 688 matches

by pofs
24 Nov 2015 19:18
Forum: Discussions in English
Topic: Raspberry Pi / Aeon Labs Z-Stick Generation 5
Replies: 3
Views: 11082

Re: Raspberry Pi / Aeon Labs Z-Stick Generation 5

Probably unlinking system built-in serial port and redefining it is not very good idea, especially when system occupies it by default.

Anyway, Z-Way won't work with Aeon stick even if you manage to fix your port problem.
by pofs
24 Nov 2015 03:38
Forum: Discussions in English
Topic: Controlling and Querying devices
Replies: 12
Views: 50165

Re: Controlling and Querying devices

Get() / Set() commands always return null, because they're just queuing command for device. It may take some time till device wakes up and command is actually delivered, so there's no reason for them to return anything. When there's a reply from device, it will update corresponding value in the devi...
by pofs
24 Nov 2015 03:35
Forum: Discussions in English
Topic: C/C++ development, API layer
Replies: 5
Views: 7416

Re: C/C++ development, API layer

Yes, C API doesn't use HTTP or JS in any way. Contrary, JS engine uses C library under the hood. I'm not sure what is inside img file (and too lazy to download and check it), but you can try http://razberry.z-wave.me/z-way-server/z-way-server-RaspberryPiXTools-v2.0.1.tgz. Headers are under libzway d...
by pofs
23 Nov 2015 23:35
Forum: Discussions in English
Topic: C/C++ development, API layer
Replies: 5
Views: 7416

Re: C/C++ development, API layer

You can just download and unpack Raspberry Pi distrib and manually unpack it to get header files. The HTTP JSON API is naturally poll-based, but underlying server-side JS API (and C API as well) supports callbacks to get notified when something changes. There's a nice set of posts about listening to...
by pofs
23 Nov 2015 22:34
Forum: RaZberry
Topic: ZwaveAPI with SET
Replies: 2
Views: 4494

Re: ZwaveAPI with SET

What do you think mode 0xFF is? There are only modes from 0x01 to 0x0D defined.
by pofs
23 Nov 2015 00:41
Forum: Discussions in English
Topic: websocket client
Replies: 33
Views: 38075

Re: websocket client

There's already some updates' pushes performed in AutomationController.js, but they're implemented wrong (push requires two arguments, not one).
Generally yes, you need some kind of module which will push updates for you.
by pofs
23 Nov 2015 00:03
Forum: RaZberry
Topic: Razberry: Howto log Sensor values?
Replies: 6
Views: 8454

Re: Razberry: Howto log Sensor values?

Fibaro device, huh?
Looks like a well-known problem with theirs invalid multichannel packets.
by pofs
22 Nov 2015 23:54
Forum: Device specific
Topic: Aeon multisensor 6 gen5 stops reporting
Replies: 5
Views: 7646

Re: Aeon multisensor 6 gen5 stops reporting

Different distance from controller/poor signal strength can lead into one battery drained faster than another one.
Also your units may have different firmware versions, which also can lead to different power consumption (due to bugs in firmware or anything).
by pofs
22 Nov 2015 23:46
Forum: Discussions in English
Topic: websocket client
Replies: 33
Views: 38075

Re: websocket client

Just connect to ws://razberry-ip:8083 from client-side js, and you'll receive everything pushed with ws.push() call from server-side js (ws is a global instance of WebServer object, which serves 8083 port).
by pofs
22 Nov 2015 04:23
Forum: Device specific
Topic: Aeon multisensor 6 gen5 stops reporting
Replies: 5
Views: 7646

Re: Aeon multisensor 6 gen5 stops reporting

Looks like sensor is (seen by z-way as) sleeping, and Get packet is waiting in queue for sensor to wake up. When you press "update", a new Get command is issued, but duplicate is removed because there's already another unsent Get in queue. I'd start with replacing battery in sensor. Probab...