Hi,
I have 2 Aeon lab aeotec multisensor. And i got a problem on the first one some weeks later. Tomorrow, i have the same problem on the second one.
The problem, my alarm trigger with no real reason (no move).
With the 2 multisensor, i got something like this :
20150324 xx:09:36.4604800 ; Detectxx ; ZWaveNode.Basic ; 255
20150324 xx:13:35.6964290 ; Detectxx ; ZWaveNode.Basic ; 0
20150324 xx:13:36.1620110 ; Detectxx ; Status.Level ; 0
Instead of usually :
20150324 xx:33:57.5923260 ; Detectxx ; ZWaveNode.Basic ; 255
20150324 xx:33:57.6414700 ; Detectxx ; Status.Level ; 1
20150324 xx:37:57.5569650 ; Detectxx ; ZWaveNode.Basic ; 0
20150324 xx:37:57.5853450 ; Detectxx ; Status.Level ; 0
2 weird things :
- So the Status.Level ; 1 seems lost ....
- None of the first 3 line have a real move in the room
But i see in the "90 Security Alarm System" code, this parameter :
"Status.Level"
"Sensor.Generic"
"Sensor.Tamper"
"Sensor.MotionDetect"
"Sensor.DoorWindow"
"Sensor.Flood"
"Sensor.Smoke"
"Sensor.Heat"
"Sensor.CarbonMonoxide"
"Sensor.CarbonDioxide"
But not the
ZWaveNode.Basic ...
So a lot of questions and not a lot of answer ... And very difficult to reproduce this bug.
I write a little bash script to survey if it happen again, and this appear one with one month between first multi and second one ...
the script :
#!/bin/bash
echo -n `date +"%x-%X"`// >> /home/pi/test
echo -n `grep "DetectSalon " /mnt/xxx/xx/xx-LastEvent.log | grep -E 'ZWaveNode.Basic|Status.Level' | grep "ZWaveNode.Basic ; 255" | wc -l`/ >> /home/pi/test
echo -n `grep "DetectSalon " /mnt/xxx/xx/xx-LastEvent.log | grep -E 'ZWaveNode.Basic|Status.Level' | grep "Status.Level ; 1" | wc -l`// >> /home/pi/test
echo -n `grep "DetectGarage " /mnt/xxx/xx/xx-LastEvent.log | grep -E 'ZWaveNode.Basic|Status.Level' | grep "ZWaveNode.Basic ; 255" | wc -l`/ >> /home/pi/test
echo -n `grep "DetectGarage " /mnt/xxx/xx/xx-LastEvent.log | grep -E 'ZWaveNode.Basic|Status.Level' | grep "Status.Level ; 1" | wc -l`// >> /home/pi/test
I unplug a zwave device, that i suppose to interfere the zwave signal ...
If someone as any answer, i would appreciate a lot to understand.
Bye