Search found 12 matches

by Slayes
27 May 2016 11:58
Forum: RaZberry
Topic: An unexpected error occurred while initialising the Z-Wave c
Replies: 4
Views: 6645

Re: An unexpected error occurred while initialising the Z-Wa

Thanks for your reply.

I too expensive for me :), i will search another solution, might be nodejs & openzwave
by Slayes
26 May 2016 18:18
Forum: RaZberry
Topic: An unexpected error occurred while initialising the Z-Wave c
Replies: 4
Views: 6645

Re: An unexpected error occurred while initialising the Z-Wa

Thanks for your reply, this issue is resolved now:) When i tried to include one sensor ( Fibaro : motion sensor) in normal mode, i have the error : INCLUSION takes a long time to start up. And i i used the expert mode : Error handling data /ZWave.zway/Run/controller.AddNodeToNetwork(1) In log file :...
by Slayes
26 May 2016 13:26
Forum: RaZberry
Topic: An unexpected error occurred while initialising the Z-Wave c
Replies: 4
Views: 6645

An unexpected error occurred while initialising the Z-Wave c

Hello, I just received this morning ZWave dongle (usb) and i tried without success to used it/ I reinstalled my SD and plugged the dongle. On the zway log, there is : Opened device: /dev/ttyAMA0 [D] [zway] Worker thread successfully created [D] [zway] Worker thread entry point [zway] Adding job: Get...
by Slayes
11 May 2016 12:24
Forum: RaZberry
Topic: Retrieve UUID
Replies: 3
Views: 4331

Re: Retrieve UUID

Arf :) thanks for your reply
by Slayes
11 May 2016 11:53
Forum: RaZberry
Topic: Retrieve UUID
Replies: 3
Views: 4331

Re: Retrieve UUID

I'm searching one UUID, might be the value of homeId can be "ok", but : Via code 'zway.controller.data.homeId.value', i found the value : -983536780 Via the back office 'http://127.0.0.1:8083/expert/#/network/controller', i found the value : 0xc5606b74 Somebody know why thos difference ?
by Slayes
10 May 2016 18:18
Forum: RaZberry
Topic: Retrieve UUID
Replies: 3
Views: 4331

Retrieve UUID

Hello, I tried a http.request in JS, 'http://127.0.0.1:8083/ZWaveAPI/Run/controller.data.uuid.value' in the main.js, but finally .. timeout ({"status":-1,"statusText":"Timeout was reached"}). I understand that zway is not fully loaded when main.js execute this request. ...
by Slayes
09 May 2016 08:48
Forum: RaZberry
Topic: External request after mouvement detection
Replies: 8
Views: 8907

Re: External request after mouvement detection

It was my fault, in my sh or python script i used 'echo' or 'print' to trace the execution of the script. And i monitored the file '/var/log/z-way-server.log'. It was a problem of linux knowledge.

Thanks everybody for your help.
by Slayes
08 May 2016 09:53
Forum: RaZberry
Topic: External request after mouvement detection
Replies: 8
Views: 8907

Re: External request after mouvement detection

I don't understand, certainly i did an error but i don't see it. In the end of the file '/opt/z-way-server/automation/main.js' var zone = 'www.xxx.fr/zwave/action.php?id_test=de&ede=defrfr'; var port = 80; zway.devices[11].instances[0].commandClasses[48].data[1].level.bind(function() { eventStri...
by Slayes
07 May 2016 11:14
Forum: RaZberry
Topic: External request after mouvement detection
Replies: 8
Views: 8907

Re: External request after mouvement detection

I corrected one line : zway.devices[11].instances[0].commandClasses.SensorBinary.data[1].level.bind(function() by zway.devices[11].instances[0].commandClasses[48].data[1].level.bind(function() { console.log('Point 1'); Now i can see on the log that the code is executed. But the next command see belo...
by Slayes
07 May 2016 10:20
Forum: RaZberry
Topic: External request after mouvement detection
Replies: 8
Views: 8907

Re: External request after mouvement detection

Thanks for your reply.
I tried this solution in first time, but i need to add more dynamic parameters in the request. I prefer try to use python for this task.