Search found 688 matches

by pofs
28 Apr 2014 00:00
Forum: RaZberry
Topic: ZWaveAPI - General comprehension question
Replies: 1
Views: 3078

Re: ZWaveAPI - General comprehension question

SensorBinary version 2 introduces sensor types, so a single device can detect several values (for example, smoke detection, glass break, tamper etc.). So a separate "level" is created for each supported sensor type, just like in SensorMultilevel. In order to keep uniform data structure, se...
by pofs
27 Apr 2014 02:04
Forum: RaZberry
Topic: C Sample....really exhausted !!
Replies: 15
Views: 17680

Re: C Sample....really exhausted !!

Have you stopped the original z-way-server first?
Your program and the server obviously can't work together.
by pofs
25 Apr 2014 06:09
Forum: RaZberry
Topic: Another startup crash
Replies: 3
Views: 4867

Re: Another startup crash

[2014-04-23 17:34:45.927] SETDATA controller.data.manufacturerId = 0 (0x00000000) [2014-04-23 17:34:45.927] SETDATA controller.data.manufacturerProductType = 10472 (0x000028e8) [2014-04-23 17:34:45.927] SETDATA controller.data.manufacturerProductId = 1815 (0x00000717) [2014-04-23 17:34:45.946] SETD...
by pofs
25 Apr 2014 05:15
Forum: RaZberry
Topic: C Sample....really exhausted !!
Replies: 15
Views: 17680

Re: C Sample....really exhausted !!

I want on my Raspberry to perform local actions when a remote device change status (send SMS, email). According to my understanding, this can be done only with C API. Why do you think so? JS automation API (inside z-way-server) allows you to do pretty much the same as C API, plus some extra HTTP/XM...
by pofs
24 Apr 2014 02:36
Forum: RaZberry
Topic: HTTP Request
Replies: 13
Views: 18621

Re: HTTP Request

The http.request is much like jQuery.ajax(): r = http.request(options); Here's the list of options: url – required. Url you want to request (might be http, https, or maybe even ftp); method – optional. Http method to use (currently one of GET, POST, HEAD). If not specified, GET is used; headers – op...
by pofs
14 Apr 2014 07:38
Forum: Device specific
Topic: BeNext / iHome tag reader
Replies: 7
Views: 25586

Re: BeNext / iHome tag reader

The restriction on code length is declared in UserCode CC specification. More than that, it must contain only ASCII characters.
by pofs
14 Apr 2014 07:02
Forum: Discussions in English
Topic: C-API help
Replies: 6
Views: 26736

Re: C-API help

zway_find_device_instance_cc_data() returns NULL because device tree is not rendered yet after zway_start().

You need to call zway_discover() after zway_start() to fetch controller information and devices list. Z-Way will load your saved device configuration only after successful discovery.
by pofs
04 Mar 2013 02:41
Forum: RaZberry
Topic: New version of RaZberry is released
Replies: 142
Views: 117872

You can re-enable raw message

You can re-enable raw message logging by adding <log-level>0</log-level> to config.xml.
It is the new configuration option, and it was not included into default config file yet.