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-broadlink-rm-community

v3.6.20

Published

Broadlink RM plugin (including the mini and pro) for homebridge: https://github.com/nfarina/homebridge

Downloads

16

Readme

Homebridge Broadlink RM Community

About this fork

I am working on upgrades to the accessory specifications in this repository. For starters I am focused on the the fan, air-conditioners and heater accessories to help improve the user experience of the devices like portable ACs, Lasko tower fans and tower heaters, etc.

I eventually would like to add multiple contibuters who can review and integrate PRs hence the "community" tag here so more people can collectively extend the accessories.

If you want to use this fork, use this command:

npm i -g homebridge-broadlink-rm-community

Introduction (Original)

Welcome to the Broadlink RM Mini and Broadlink RM Pro plugin for Homebridge.

This is a fork of the [original plugin by Luke Rhodes] (https://github.com/lprhodes/homebridge-broadlink-rm) This plugin allows you to control your RM Mini and RM Pro with HomeKit using the Home app and Siri.

Like this plugin?

Please consider testing it and if possible contributing to the code base. This project is built on top of the labor of many folks so please feel free to show your support to them as well.

Thank you!

Documentation

Full documentation is extended from the original that can be found here.

Updates to accessories

Fan Accessory

Supports step size property that creates graceful increments for fan speed changes

Home app fan speed UI in action

Add under the data section of the fan accessory in config.json as shown in the config-sample.json | key | description | example | default | |--|--|--|--| | stepSize | Increments of fan speed. This will update Home app UI so that fan speed increases in steps. If your fan support 4 speeds and the step size should be 100/4 = 25. | 25 | 1 |

Support for combined fan speed and swing modes - Some fans like Lasko tower fans with remotes that have display have unique hex codes for combination of each speed and swing mode

config.json { "name": "fan", "type": "fan", "swingOn": "on", "swingOff": "off", "data": { "fanSpeed50": { "swingOn": "26008a002828123f282a...", "swingOff": "26008a002828123f282a..." }, } }

Thanks

Thanks to @lprhodes (https://github.com/lprhodes/homebridge-broadlink-rm), @kiwi-cam (https://github.com/kiwi-cam/homebridge-broadlink-rm), @tattn (https://github.com/tattn/homebridge-rm-mini3), @PJCzx (https://github.com/PJCzx/homebridge-thermostat) @momodalo (https://github.com/momodalo/broadlinkjs) whose time and effort got me started.