Hello,
Seem to be having problems with commands passed from RF remotes triggering group actions.
Have wall mounted X-10 remotes and am using an attached script called 'listen wireless' (hacked from the Time Stamp Attachment script included in 1.8 ). Here's the gist of the script:
---------------------------
using terms from application "IndigoServer"
on receive x10 event of functionType for address addrString with increment dimVal with preset presetVal with xdata xdataVal with xcommand xcommandVal
-- first, let Indigo process the event:
continue receive x10 event of functionType for address addrString with increment dimVal with preset presetVal with xdata xdataVal with xcommand xcommandVal
if functionType is x10TurnOn and addrString is "G1" then
--------------------------------------- leaving
IndigoLog("AWAY")
execute group "Away"
end if
end receive x10 event
end using terms from
---------------------------
Now, under 1.8 it works fine and I get this in the log:
Received X10 G1 off
Action Group tvOn
Sent X10 G1 off
and get this in 2.0
Received X10 G1 off
Sent X10 G1 off
so it seems it does not trigger the Action Group. Any ideas?
Thanks
Daniel