With this plugin, you can create any number of fake switches that will start a timer when turned ON, when the delay time is reached the switch will automatically turn OFF and trigger a dedicated motion sensor for 3 seconds. This can be very useful for advanced automation with HomeKit scenes - when delayed actions are required.
sudo npm install -g homebridge-delay-switch- Create an accessory in your config.json file
- Restart homebridge
"accessories": [
{
"accessory": "DelaySwitch",
"name": "DelaySwitch",
"disableSensor": false,
"delay": 5000
}
]
A Motion sensor is created for each accessory in order to be able to cancel the timer and the attached automations.
How it works? you can set the automation to be triggered from the motion sensor instead of the switch OFF command and therefore you can turn OFF the switch and prevent the motion sensor from being triggered or any attached automations.
If you have no use of the sensor you can remove it by adding "disableSensor": true to your config.
Basically, all you need to do is:
- Set the desired delay time in the config file (in milliseconds).
- The plugin will create one switch and one motion sensor for this plugin.
- Use this switch in any scene or automation.
- Set an automation to trigger when this switch is turned ON or the motion sensor is triggers - "EVE" app is very recommended to set this automation.
For example, when using smart wall switch (to turn ON) and RGB light bulb (to switch color) together on the same scene can cause no action on the bulb since the bulb might not even be ON when the command has been sent from homebridge. For that, we need to set an automation to change the bulb color a few seconds after the wall switch ON command.
Another great example is using this plugin to turn ON/OFF lights based on a motion/door sensor. This can be achieved by setting an automation to turn ON a light when the delay swich is turned ON and turn OFF the light when the dedicated delay motion sensor is triggers.
Also it can be use with any device that require a certain delay time from other devices (TV + RPi-Kodi / PC + SSH / etc...)
-
When manualy turning OFF the switch, the timer will stop and the motion sensor will NOT be triggered.
-
When the delay switch is getting ON command while it's already ON, the timer will restart and the motion sensor trigger will be delayed.
Creating and maintaining Homebridge plugins consume a lot of time and effort, if you would like to share your appreciation, feel free to "Star" or donate.
Click here to review more of my plugins.