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

v1.3.9

Published

Homebridge plugin for Remootio devices

Downloads

104

Readme

Homebridge Remootio

verified-by-homebridge npm

Homebridge Plugin Providing Remootio Support. This plugin supports Remootio 1, Remootio 2 and Remootio 3 with software versions >=2.24 that provide the V3 API.

Usage

First of all make sure that the Remootio Websocket API is enabled with logging for your Remootio device in the Remootio app. Please take note of the API Secret Key and API Auth Key along with the IP address of the device, as you will need these.

The Gate status sensor is required for the plugin to appear as a Garage Door Opener in HomeKit. If you don't use, or have the gate status sensor, the plugin will appear as a Switch. For remootio-2 and remootio-3 devices, you can also expose the secondary relay as Switch.

The Doorbell add-on requires the Doorbell interface to be enabled and a push button or doorbell switch to be installed on input 2 (terminal 5).

Change log

1.3.8 Added support for the doorbell add-on.

1.3.4 You can now configure the primary relay as a generic relay. This is useful if you don't have the sensor to indicate if a garage door or gate is open or closed.

1.3.2 You can now specify the hostname of the Remootio device instead of the ip address.

1.3.1 The secondary relay on Remootio-2 and Remootio-3 devices can now be seprately controlled via Homekit, after one of the outputs is configured as free relay output via the mobile app. Two new parameters have been added to the plugin configuration to enable and name the secondary relay.

Installation

If you are new to Homebridge, please first read the Homebridge documentation and installation instructions before proceeding.

  1. Install the Gate status sensor and enable it in the app.

Installation via Homebridge Config UI X

  1. Search for Homebridge Remootio on the Plugins tab of Config UI X
  2. Install the Homebridge Remootio plugin and use the configuration form to configure your Remootio device(s).

Manual install

  1. Install the package using: npm install homebridge-remootio.
  2. Edit or add platforms section in the config.json file in your home directory inside homebridge. See below for information.

Plugin configuration

"platforms": [
    {
        "platform": "Remootio",
        "name": "Remootio",
        "devices": [
            {
                "name": "<display name of the Garage Door Opener accessory you want to appear in HomeKit>",
                "ipAddress": "<the ip address or hostname of your Remootio device>",
                "apiSecretKey": "<API Secret Key>",
                "apiAuthKey": "<API Auth Key>",
                "garageDoorName": "Garage Door",
                "enablePrimaryRelayOutput": false,
                "enableSecondaryRelayOutput": true,
                "enableDoorbell": true,
                "primaryRelayName": "Primary Relay",
                "secondaryRelayName": "Secondary Relay",
                "doorbellName": "Doorbell"
            
            },
                {
                "name": "<display name of the Garage Door Opener accessory you want to appear in HomeKit>",
                "ipAddress": "<the ip address or hostname of your Remootio device>",
                "apiSecretKey": "<API Secret Key>",
                "garageDoorName": "Garage Door",
                "enablePrimaryRelayOutput": false,
                "enableSecondaryRelayOutput": true,
                "enableDoorbell": true,
                "primaryRelayName": "Primary Relay",
                "secondaryRelayName": "Secondary Relay",
                "doorbellName": "Doorbell"
            },
        ]
    }
]

Troubleshooting

Most "No Response" issues are related to the device WebSocket API not being fully enabled, and therefore does not respond to API calls. To address this problem, use the Remootio mobile app to disable and then enable the WebSocket API. Thereafter, reboot the device.

Discovering the hostname of my Remootio device

The hostname of the Remootio device can be constructed by combining the string "remootio_", the serial number, and the local domain name. You can find the serial number of your device in the Remootio mobile app under Settings->Bluetooth information. It appears to be a combination of the Wi-Fi mac address and an unknown set of characters. Another method is to use the "Discovery" app on an iOS device or a Mac and search for the _remootio._tcp service. In the corresponding information to your device serial numbers, you would find the hostname and IP address.

An example hostname would be: remootio_246f28abf4d1ctsyxnhs.local

Screenshots

Open Gate in Apple Home app Closed Garage with optional relay switch in Apple Home app