I just found out that the FGRM-222 devices have a scene controller capability like the Fibaro dimmers.
I am using this to set a virtual "manual mode" for the blinds at doors so that I won't be locked out when the blinds go down.
On a FGRM-222 Set parameter 50 to 1
do the vera dance
double click the up or down buttons of the FGRM
open the device, and on the advanced tab will be 3 new variables:
LastSceneID, LastSceneTime, sl_SceneActivated
in PLEG create 3 device properties
p_blind_kitchen_door_SceneActivated
p_blind_kitchen_door_LastSceneTime
p_blind_kitchen_door_LastSceneID
create a condition in PLEG (not my finding, this was discovered by someone else), e.g. c_kitchen_door_manual_mode_on
(p_blind_kitchen_door_SceneActivated;p_blind_kitchen_door_LastSceneTime) AND (p_blind_kitchen_door_LastSceneID == XX)
whereas XX can be set to
14 UP double click
15 UP triple click
24 DOWN double click
25 DOWN triple click
You can use the condition c_kitchen_door_manual_mode_on to avoid blind movement when manual mode is on.
I found UP double click for manual mode on and DOWN double click for manual mode off easy to remember.