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

homebridge-multisensor-trigger

v1.0.2-beta.0

Published

With this plugin, you can create any number of fake switches that will be ON for a certain time. Every time the switch is turned on, it triggers the next sensor.

Downloads

2

Readme

Homebridge-multisensor-trigger

With this plugin, you can create any number of dummy switches that will start a timer when turned ON, when the delay time is reached the switch will automatically turn OFF. Every switch has a number of motions sensors. Everytime the switch is turned ON the next sensor will be activated. This can be very useful for advanced automation with HomeKit scenes - when multiple lights in a room should be activated with one event.

Installations

This plugin is for HOOBS and can be easily installed and configured through their UI.

If you don't use HOOBS (or Homebridge UI), keep reading:

  • sudo npm install -g homebridge-multisensor-trigger
  • Create an accessory in your config.json file
  • Restart homebridge

Example config.json:

   "accessories": [
       {
           "accessory": "MultisensorTrigger",
           "plugin_map": {
               "plugin_name": "homebridge-multisensor-trigger",
               "index":0
           },
           "name": "TriggerSwitch 1",
           "delay": 1000,
           "sensors":3
       }   
   ]

| Parameter | Description | Required | Default | type | | -------------------------------- | --------------------------- |:--------:|:--------:|:--------:| | accessory | always "MultisensorTrigger" | ✓ | - | String | | name | Name for your accessory | ✓ | - | String | |delay | Delay/Timer in milliseconds | ✓ | 1000 | Integer | |sensors` | Remove the Motion Sensor | ✓ | 1 | Integer |

What does this plugin do?

When turning the switch ON, it activates the next sensor in list and turns OFF automatically after the delay time. For example if you use 3 sensors this is the click logic:

  1. First ON: Sensor 1 ON, Sensor 2 OFF, Sensor 3 OFF
  2. Second ON: Sensor 1 OFF, Sensor 2 ON, Sensor 3 OFF
  3. Third ON: Sensor 1 OFF, Sensor 2 OFF, Sensor 3 ON
  4. OFF: Sensor 1 OFF, Sensor 2 OFF, Sensor 3 OFF

Why do we need this plugin?

If you want to use a remote-control with 1 Button (e.g. EVE Button) you can use the trigger to rotate through several scenes by using only one button event.

Why Adding Motion Sensors?

The switch is trigged by the remote-control device. The motion sensors can be used as triggers for automations of light-scenes and everytime the switch is turned ON, the light-scene changes.

Possible Characteristics and Services

This plugin has been created based on the homebridge-plugin-template. Description of characteristics (available methods and how to build listener) can be found in the Homebridge-API

A special thanks to Github-User NityBZ, who inspired me to adapt his Project for my personal needs.

Start in Developer Mode

To start the plugin in developer mode run homebridge -D -P . -U ~/.homebridge-dev/ while beeing in the root directory. A sample config has to be saved at ~/.homebridge-dev/.