ok all I need to know if this is doable as I can seem to work it out I need a way when a device manager conditional is true to have it trigger an action
Thanks,
Yonu
ok all I need to know if this is doable as I can seem to work it out I need a way when a device manager conditional is true to have it trigger an action
Thanks,
Yonu
come on now do we know what tech support means
Did you look at the "Automation/Device Manager Conditional" conditional node?
Ron
No support through PM
yeah but from what I can tell it won't actually trigger the action
Can you upload a GML with just the relevant part? And explain in words what it should do.
Ron
No support through PM
ok here is the GML and this is one of several ones I am trying to get working but what I want to happen is when the security sensor registers not ready it should trigger the speech action
new1.gml
ah i see the misunderstanding. You still need an event attached. The conditional filters the triggering of actions it does not initiate the trigger it self. So look for the event that is triggered when the security sensor is tripped and then use that instead of the conditional.
Ron
No support through PM
thanks and I figured that but I don't get any evens from the w80032 only updates in the device manager how do I go about getting events?
Thanks,
yonu
so how do I go about getting the event? from the W800
The w800 receives a few different codes. I'd start by seeing what is coming in.
Open file Components/W800RF32.lua and around line 100 in the function ProcessReceive add
This should print the data that is being received. Now trigger your sensor and see what is coming in.Code:print(math.BinaryToHexString(data))
You could at this point also simply add
now all data arriving from the w800rf will trigger an event.Code:gir.TriggerEvent(math.BinaryToHexString(data),18)
Ron
No support through PM