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-heater-cooler

v2.2.3

Published

Controll your AC from AC Freedom App via homebridge.

Downloads

36

Readme

homebridge-broadlink-heater-cooler

verified-by-homebridge GitHub Workflow Status GitHub last commit npm npm version

Homebridge Plugin for the control AUX-family Air Conditioners based on Broadlink Wi-Fi module (AC Freedom app).

Features

  • Most of the original app's methods are supported.
  • Works via LAN, no need internet connection.
  • Very fast operation speed.
  • Feedback is supported.

Installation

  1. Install Homebridge using the official instructions.
  2. Install this plugin using sudo npm install -g homebridge-broadlink-heater-cooler --unsafe-perm.
  3. Update your configuration file. See configuration sample below.

Configuration

Edit your config.json accordingly. Configuration sample:

{
    "bridge": {
        "name": "Homebridge 9184",
        "username": "00:00:00:00:00:00",
        "port": 99999,
        "pin": "111-111-111"
    },
    "accessories": [
        {
            "accessory": "AirCondionerAccessory",
            "ip": "192.168.1.1",
            "mac": "AA:BB:CC:DD:EE:FF",
            "name": "AirCon",
            "increments": 1,
            "display": true,
            "health": true,
            "clean": true,
            "mildew": true,
            "sleep": true,
            "auto": true,
            "swing": 3
        }
    ],
    "platforms": []
}

| Fields | Description | Required | Default value | |----------------------|---------------------------------------------------------------------------------|----------|-------------- | | ip | Air Conditioner IP address in IPv4. Make sure it is static. | Yes | | | mac | Air Conditioner MAC address. | Yes | | | increments | Temperature set step. | No | 0,5 | | display | Show Display button for turn on/off display | No | false | | health | Show Health button for turn on/off health mode. | No | false | | clean | Show Clean button for turn on/off clean mode. | No | false | | mildew | Show Mildew button for turn on/off mildew mode. | No | false | | sleep | Show Sleep button for turn on/off sleep mode. | No | false | | auto | Show Auto button for set Air Conditioner auto fan speed. | No | false | | swing | Swing 1 - only horizontal, 2 - only vertical, 3 - both. | No | 3 |

| Fanspeed | AC equivalent | |--------- | --------------| | 1 - 19 | mute | | 20 - 39 | low | | 40 - 59 | medium | | 60 - 79 | high | | 80 - 100 | turbo |

Communication

Remember that this is not a commercial product, but the result of free labor.

  • If you need help using this plugin, open an issue here on GitHub. The more detail the better!
  • If you found a bug, open an issue here on GitHub. The more detail the better!
  • If you want to contribute, submit a pull request.
  • If you have suggestions for improvement, you are welcome.