@djelibeybi/homebridge-delayed-occupancy
v2.2.0
Published
Occupancy sensor linked to one or more switches with a built-in not-unoccupied delay for Homebridge: https://github.com/nfarina/homebridge
Downloads
11
Maintainers
Readme
Delayed Occupancy Sensor Plugin for Homebridge
This plugin is designed to solve HomeKit's inability to reset the timer that starts when an accessory is controlled by a motion sensor event.
Note: you must setup a HomePod, HomePod mini, Apple TV or iPad as a home hub before installing this plugin as it relies on automations to function.
Don't use this plugin: use a better one
This plugin exists to solve a particular problem of mine and I consider it functionally complete. I don't intend to add any more features.
I recommend using homebridge-magic-occupancy
instead
as it was forked from the same source but has added a lot more functionality
and is Homebridge Verified.
Why does this plugin exist?
The code is derived from the original homebridge-occupancy-delay
plugin
which I used successfully for many years. My version just modifies logging, configuration and accessory metadata.
What does this plugin do?
The plugin creates a virtual occupancy sensor with one or more associated switches. When a switch turns on, the sensor detects occupancy. When all the switches turn off, the sensor ways for the nominated delay period before it stops detecting occupancy. If a switch is turned on before the timer ends, the timer is reset.
What automations do I need to configure to make this work?
This example describes a basic scenario to enable motion-sensor activated lights.
- When your motion sensor detects motion, turn the activation sensor switch on.
- When your motion sensor stops detecting motion, turn the activation sensor off.
- When the occupancy sensor detects occupancy, turn your lights on.
- When the occupancy sensor stops detecting occupancy, turn your lights off.
The plugin allows you to create multiple activation switches so that you can link multiple sensors to the same occupancy sensor. The plugin will wait until all the switches are off before starting the timer.
How to install
The simplest method to install and configure this plugin is via
homebridge-config-ui-x
.
Just search for @djelibeybi/homebridge-delayed-occupancy
on the Plugins tab.
To install manually, run the following command in your Homebridge directory.
Depending on how you installed Homebridge, you may need to add the -g
and/or
the --unsafe-perms
parameters:
npm install [-g|--unsafe-perms] homebridge-delayed-occupancy
The -g
option will install the plugin globally and the --unsafe-perms
option
is needed for some platforms to install successfully.
Configuration
The plugin can be configured via the homebridge-config-ui-x
admin interface.
To configure the plugin manually, add one or more configuration stanzas to the
accessories
block of your Homebridge config.json
file:
"accessories": [
{
"accessory": "delayed-occupancy-sensor",
"name": "Delayed Occupancy Sensor",
"delay": 5,
"switches": [
"First activation switch",
"Second activation switch"
]
}
]
The switches
list is optional. If you do not include this list, a single
switch will be automatically created by the plugin. If you provide this list,
then the names provided will be used as the name of each switch in HomeKit.