using motion sensor of the Aeon Multisensor

Discussions about existing Z-Wave device and their usage with Z-Way/Z-Cloud/Z-Box
Post Reply
Lorenzo
Posts: 8
Joined: 05 Oct 2014 09:28

using motion sensor of the Aeon Multisensor

Post by Lorenzo »

hello,
I'm discovering the Razberry and its huge possibilites ...
On the Aeon sensor multilevel, I'm able to get temp, humidity and light with :
http://192.168.1.30:8083/ZWaveAPI/Run/d ... es[49].Get()
http://192.168.1.30:8083/ZWaveAPI/Run/d ... .val.value
http://192.168.1.30:8083/ZWaveAPI/Run/d ... .val.value
http://192.168.1.30:8083/ZWaveAPI/Run/d ... .val.value
But I've not understood how to get the information about the motion sensor. Can someone help me, please ?
Thanks in advance,
Lorenzo
User avatar
PoltoS
Posts: 7579
Joined: 26 Jan 2011 19:36

Re: using motion sensor of the Aeon Multisensor

Post by PoltoS »

You will get it in devices[4].SensorBinary.data[1].level.value or devices[1].Basic.data.level with srcNodeId = 4 and srcInstanceId = 0.

This depends on the device and it's settings. Easiest is to look in logs during motion detection.
Lorenzo
Posts: 8
Joined: 05 Oct 2014 09:28

Re: using motion sensor of the Aeon Multisensor

Post by Lorenzo »

Thanks a lot. "devices[4].SensorBinary.data[1].level.value" seems to work for the motion sensor.
But as the device is sleeping most of the time, in my Python script, I get always "false". How can I get the information when a motion is detected ?
User avatar
PoltoS
Posts: 7579
Joined: 26 Jan 2011 19:36

Re: using motion sensor of the Aeon Multisensor

Post by PoltoS »

You should bind to that value: devices[4].SensorBinary.data[1].level.value.bind(function() { ... })
Then it depends on what to do on motion.
Post Reply