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

@nklint/homebridge-gpio-garage-door

v1.0.3

Published

Use GPIO output as HomeKit garage door

Downloads

12

Readme

npm npm release license lint & build

Homebridge GPIO garage door

This plugin uses the GPIO output of the Raspberry PI to provide a HomeKit garage door.

:warning: This plugin is only designed for and tested on Raspberry PI. There's no guarantee, the plugin works also on other boards equipped with GPIO!

Configuration

| key | type | description | |-------------------------|---------|------------------------------------------------------------------------------------------------------------------------------------------------| | name | string | The name of the accessory. | | gpioPinOpen | integer | The GPIO pin the plugin should use to open the garage door. | | gpioPinClose | integer | The GPIO pin the plugin should use to close the garage door. If empty, gpioPinOpen is used to open and close the garage door. | | emitTime | integer | How many milliseconds should the GPIO output be HIGH? | | executionTime | integer | How many seconds does the garage door to execute an open or close command? | | allowCommandOverride | boolean | If true, the plugin will allow to send a new command (e.g. open) to the garage door while it's already executing another command (e.g. close). | | reverseOutput | boolean | If enabled, a open signal will be sent as HIGH-LOW-HIGH, instead of the default behaviour LOW-HIGH-LOW. | | gpioStateInputEnabled | boolean | If enabled, the plugin will read the current state of the garage door from the GPIO input. | | gpioPinState | integer | The GPIO pin the plugin should use to read the current state of the garage door. | | gpioStateInputReverse | boolean | If enabled, a GPIO HIGH state will indicate a CLOSED garage door. | | webhookEnabled | boolean | If enabled, the plugin will listen on the configured port for a webhook to changes of the garage door state, emitted by an external sensor. | | webhookPort | integer | The port the plugin should listen on for a webhook. | | webhookPath | string | The path the plugin should listen on for a webhook. | | webhookJsonPath | string | The JSON path to the value of the garage door state. A truthy value indicates an open garage door. | | webhookJsonValueReverse | boolean | If enabled, the plugin will reverse the value of the JSON path. E.g. a truthy value will become falsy. |

Support & Contribution

This project is not commercially developed or maintained. Therefore, it might take some time after opening an issue until it is solved. But anyway: If you experience any bugs feel free to open an issue or create a pull request. Contribution is always welcome.