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-revpidio

v0.3.0

Published

Homebridge plugin Revolution PI DIO modules

Downloads

15

Readme

Homebridge plugin for Revolution PIs digital I/O modules

This plugin provides HomeKit switches for the digital outputs of the RevPi DIO & RevPi DO. Additional the digital inputs can be configured as some type of sensor inpur.

Both digital outputs and inputs uses the type names of the digital outputs as setup in PiCtory.

Installation

  • Prepare RevPi core
  • Install homebridge
  • Install & Setup this plugin

You can skip the first 2 steps, if homebridge is already running on your RevPi core.

Prepare Revolution Pi

Install at least a jessie image on the Rev Pi core.

Remove old node.js:

sudo -i
apt-get remove nodered -y
apt-get remove nodejs nodejs-legacy -y
exit

Install node.js version manager. This will install node.js and npm.

curl -L https://git.io/n-install | bash

Create configuration in PiCtory

Install homebridge

The installation instructions can also be found here.

sudo apt-get install libavahi-compat-libdnssd-dev

sudo npm install -g --unsafe-perm homebridge

run homebridge using homebridge to check if it is correctly installed. The message "No plugins found. See the README for information on installing plugins." should appear.

Install & Setup RevPiDO plugin

Install plugin dependencie "RevPiModIO":

sudo apt-get update

sudo apt-get install python3-revpimodio2

sudo apt-get dist-upgrade

Install this plugin using: npm install -g homebridge-revpidio

Create or Update your hombridge configuration file. See sample_config.json or snippets below.

Configuration Digital Ouptuts

Configuration sample:

accessories : [
  {
    "accessory": "RevPiDO",
    "name": "A Light",
    "output_name": "O_3",
    "type": "light",
    "invert": false
  }
]

Fields:

  • "accessory": Must always be "RevPiDO" (required)
  • "name": Can be anything (required)
  • "output_name": type name of the digital output given in PiCtory (e.g. "O_1" for output 1). (required)
  • "type" : one of the following option ["switch", "light", "fan"] default: "switch"
  • "invert": true or false, output is logical inverted, optional default: false

Configuration Digital Inputs

Configuration sample:

accessories : [
  {
    "accessory": "RevPiDI",
    "name": "An Input",
    "input_name": "I_3",
    "type" : "motion",
    "invert": false
  }
]

Fields:

  • "accessory": Must always be "RevPiDI" (required)
  • "name": Can be anything (required)
  • "input_name": type name of the digital input given in PiCtory (e.g. "I_1" for input 1). (required)
  • "type" : one of the following option ["contact", "motion", "smoke", "leak", "occupancy", "button"*, "state"**, "doorbell"***] default: "contact"
  • "invert": true or false, input is logical inverted, optional default: false

*: Button with no state, e.g. trigger for a scene

**: Like a switch, this switch can not switche manually

***: currently not supported in iOS (may be in the future, use motion)

Configuration PiCore Info

To show the RevPi core temperatur use this accessory.

Configuration sample:

accessories : [
  {
    "accessory": "RevPiCore",
    "name": "My RevPi core"
  }
]

Fields:

  • "accessory": Must always be "RevPiCore" (required)
  • "name": Can be anything (required)

Contributions & Thanks

Special thanks for contributions:

  • Sven @ https://revpimodio.org/ (python library + bug report)