Search found 11 matches

by danilo
02 Apr 2013 15:59
Forum: RaZberry
Topic: Clarify Python things with ZWay/Razberry
Replies: 10
Views: 16349

What no Python support?

<t>I don't get it. Are you saying we won't be able to access ZWay on Razberry through Python?<br/> I invested a lot of time sorting out the issues with my Aeon Labs HEM and NorthQ setup and I planned to log the data with a Python script. Why would you not support such projects? What is Razberry then...
by danilo
24 Mar 2013 01:16
Forum: RaZberry
Topic: Why is there no ZWaveAPI description ?
Replies: 4
Views: 5781

Why is there no ZWaveAPI description ?

<r>I have been playing around with the RaZberry now for a while considering it for an actual project with the Aeon Labs HEM and the NorthQ Power Meter. But the lack of useful documentation is driving me crazy. There is no description of the ZWaveAPI that is of any use. I am about to give up on the w...
by danilo
24 Mar 2013 01:16
Forum: RaZberry
Topic: Why is there no ZWaveAPI description ?
Replies: 4
Views: 5781

Thanks it works - looking forward to Python examples

<t>Thanks Sergei for your explanations. It works now. To read the meter I can now either ask:<br/> IP_RASPBERRY:8083/ZWaveAPI/Run/devices[3].instances[0].commandClasses[0x32].data[0].val.value <br/> <br/> or your new abbreviated form: <br/> IP_RASPBERRY:8083/ZWaveAPI/Run/devices[3].Meter.data[0].val...
by danilo
19 Mar 2013 02:59
Forum: RaZberry
Topic: Access ZWaveAPI through Python script on Raspberry
Replies: 19
Views: 22019

Access ZWaveAPI through Python script on Raspberry

<t>Hi, <br/> <br/> I manage to access my Z-Wave Sensors through the ZWaveAPI with JSON commands from my Webbrowser.<br/> <br/> Now I would like to log data with a Python Script on the Raspberry directly.<br/> <br/> How do I access the ZWaveAPI from a Python Script on the Raspberry?<br/> <br/> (E.g i...
by danilo
19 Mar 2013 02:59
Forum: RaZberry
Topic: Access ZWaveAPI through Python script on Raspberry
Replies: 19
Views: 22019

Thanks

Many Thanks Stefan, really appreciate your help.
danilo
by danilo
19 Mar 2013 02:59
Forum: RaZberry
Topic: Access ZWaveAPI through Python script on Raspberry
Replies: 19
Views: 22019

Same with python script - what is wrong here?

<t>I am trying the same with a python script and a sensor value but somehow fail. I do this:<br/> <br/> 1.)--------Write automation file my_main.js --------------------<br/> <br/> zway.devices[2].instances[1].commandClasses[0x31].data[4].val.bind(function() {<br/> try {<br/> system("python /home/pi/...
by danilo
19 Mar 2013 02:59
Forum: RaZberry
Topic: Access ZWaveAPI through Python script on Raspberry
Replies: 19
Views: 22019

thanks

Thanks for the quick response I will try
by danilo
10 Mar 2013 18:56
Forum: RaZberry
Topic: Reading Sensor Value of Aeon Labs HEM - getting NULL
Replies: 4
Views: 6188

Reading Sensor Value of Aeon Labs HEM - getting NULL

<t>Hi there,<br/> I am trying to read the sensor values (Watt) of the Aeon Labs HEM.<br/> <br/> In the RaZberry UI I can see the wattage per Clamp. (But the Update function more often then not does not update the values).<br/> <br/> Then I issue the following JSON calls: <br/> http://IP_RAZBERRY:808...
by danilo
10 Mar 2013 18:56
Forum: RaZberry
Topic: Reading Sensor Value of Aeon Labs HEM - getting NULL
Replies: 4
Views: 6188

Yes I tried .Get() on specific instance

<t>Yes I did for example:<br/> http://IP_OF_RAZBERRY:8083/ZWaveAPI/Run/devices[2].instances[2].commandClasses[0x31].Get() <br/> <br/> response was: NULL<br/> <br/> Then I did:<br/> http://IP_OF_RAZBERRY:8083/ZWaveAPI/Run/devices[2].instances[2].commandClasses[0x31].data.val.valueOf(0)<br/> <br/> res...
by danilo
10 Mar 2013 18:56
Forum: RaZberry
Topic: Reading Sensor Value of Aeon Labs HEM - getting NULL
Replies: 4
Views: 6188

Problem solved - Aeon Labs HEM needs USB Power

<t>Ok I got the problem solved. <br/> I had to remove the batteries from the Aeon Labs HEM and run it with USB power then it started updating the data when I issued the Get() command.<br/> <br/> How can I include the JSON comands into a script so I can log the sensor values every 5 seconds and store...