Fibaro wall plug FIB_FGWPF-101

Dear all,

I just bought several Fibaro wall plugs to controll the lights and other devices by the wall plug. I tried to add a scene in the veralite:

When motion sensor is activaded, the Fibaro wall plug shall switch on. If nothing else happens for 10 Minutes, the wall plug shall turn off.

Sound easy, but there is no possibility to add this action to the wall plug in veralite. Dos anybody have a proposal?

Best regards

There are many ways to deal with this programmatically, using plugins like PLEG or LUA code. However, if you wish to do this with a plain stock Vera; your best bet is as follows.

  1. Configure your motion sensor so that the untrip timeout is 10 minutes(See motion sensor manual).

  2. Create an On scene for the Fibaro plug that uses the motion sensor is tripped as a trigger to run it.

  3. Create an Off scene with the motion sensor is untripped as a trigger to run it.

Bonus (after the above is working). You might want the receptacles turning on and off only at night and not during the day. You can create this additional condition simply by adding the following line of Lua code to the LUUP tab of each scene:

return luup.is_night() == true