Page 1 of 1

using motion sensor of the Aeon Multisensor

Posted: 05 Oct 2014 22:54
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

Re: using motion sensor of the Aeon Multisensor

Posted: 06 Oct 2014 03:32
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.

Re: using motion sensor of the Aeon Multisensor

Posted: 15 Oct 2014 15:10
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 ?

Re: using motion sensor of the Aeon Multisensor

Posted: 25 Oct 2014 23:24
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.