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

jw-homebridge-autelis

v0.0.51

Published

autelis plugin for homebridge

Downloads

4

Readme

homebridge-thermostat

Homebridge plugin to control a web-based thermostat

Installation

  1. Install homebridge
  2. Install this plugin: npm install -g homebridge-thermostat
  3. Update your config.json file (See below).

Configuration example

"accessories": [
     {
       "accessory": "Thermostat",
       "name": "Thermostat",
       "apiroute": "http://myurl.com"
     }
]

Structure

| Key | Description | | --- | --- | | accessory | Must be Thermostat | | name | Name to appear in the Home app | | apiroute | Root URL of your Thermostat device (excluding the rest of the requests) | | temperatureDisplayUnits (optional) | Whether you want °C (0) or °F (1) as your units (0 is default) | | currentHumidity (optional) | (true or false) Whether to include currentRelativeHumidity as a field in /status (false is default) | | targetHumidity (optional) | (true or false) Whether to include targetRelativeHumidity as a field in /status and be able to set it via /targetRelativeHumidity (false is default) | | heatOnly (optional) | (true or false) Whether the thermostat only supports heating (true) or heating and cooling (false) (false is default) | | maxTemp (optional) | Upper bound for the temperature selector in the Home app (30 is default) | | minTemp (optional) | Lower bound for the temperature selector in the Home app (15 is default) | | timeout (optional) | Time (in milliseconds) until the accessory will be marked as "Not Responding" if it is unreachable (5000 is default) | | http_method (optional) | The HTTP method used to communicate with the thermostat (GET is default) | | username (optional) | Username if HTTP authentication is enabled | | password (optional) | Password if HTTP authentication is enabled | | model (optional) | Appears under "Model" for your accessory in the Home app | | serial (optional) | Appears under "Serial" for your accessory in the Home app | | manufacturer (optional) | Appears under "Manufacturer" for your accessory in the Home app |

API Interfacing

Your API should be able to:

  1. Return thermostat info when it recieves /status in the JSON format like below:
{
    "targetHeatingCoolingState": INT_VALUE_0_TO_3,
    "targetTemperature": FLOAT_VALUE,
    "currentHeatingCoolingState": INT_VALUE_0_TO_2,
    "currentTemperature": FLOAT_VALUE
}

Note: You can also add the currentRelativeHumidity and targetRelativeHumidity fields individually or together above if enabled in the config.json (read Structure)

  1. Set targetHeatingCoolingState when it recieves:
/targetHeatingCoolingState/{INT_VALUE_0_TO_3}
  1. Set targetTemperature when it recieves:
/targetTemperature/{INT_VALUE}
  1. If enabled in config.json (read Structure), set targetRelativeHumidity when it recieves:
/targetRelativeHumidity/{FLOAT_VALUE}

HeatingCoolingState Key

| Number | Name | | --- | --- | | 0 | Off | | 1 | Heat | | 2 | Cool | | 3 | Auto |

Heatmiser Support

Folder 'heatmiser' contains a contributed example of the API. It supports Heatmiser wireless thermostats, as long as https://github.com/thoukydides/heatmiser-wifi is installed and working.