npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@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

31

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.

  1. When your motion sensor detects motion, turn the activation sensor switch on.
  2. When your motion sensor stops detecting motion, turn the activation sensor off.
  3. When the occupancy sensor detects occupancy, turn your lights on.
  4. 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.