Is anyone able to help me find the most efficient way to manage two scene controllers, sharing the same set of actions via PLEG?
I have two Nodon Octan remotes next to the bed - one for me, one for the missus. Now, I have got this working crudely with PLEG using a device property for the LastSceneID variable on both switches. and a condition like this:
cBedOct_1s (single press on button 1)
pBedOct1_SID == 10 OR pBedOct2_SID == 10
This works, to a point, but if a single press on button 1 is a toggle, I can toggle the light on, and then button 1 becomes useless, because another press on either switch doesn’t result in a state change.
I figure I can probably use the LastSceneTime variable to check for a ‘new’ trigger, but with 16 scenes on one of these switches, the conditions tab is already huge, and no doubt, grossly inefficient too.
… am I missing a much better way to do this?