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-venstar-updated

v0.2.2

Published

Homebridge plugin for Venstar thermostats

Downloads

8

Readme

homebridge-venstar-udpated

Homebridge plugin for Venstar Thermostats, forked from homebridge-venstar-thermostats.

Support and difference from original plugin

I've set this up and tested it only with the Venstar T7900 thermostat. With the T7900, the original plugin would only retrieve the current temperature, set temperature and mode (e.g. heating or cooling). You could not change the set temperature or mode.

I've updated it so that you can now change the set temperature and the mode. I've also added the ability for it to pull in the humidity value from the thermostat, so you can use it as a humidity sensor in HomeKit.

Setup

  • Add homebridge-venstar-updated via the Homebridge UI.
  • Make sure your thermostat has Local API mode enabled. For the T7900, these are the steps:
    • Tap MENU.
    • Then Wi-Fi.
    • Then Local API Options.
    • If the top button says Local API - OFF, then tap it to turn it on. If it already says Local API - ON, then you don't need to do anything.
  • Add the following to your JSON config in Homebridge.
{
    "platform": "VenstarThermostats",
    "thermostats": [
        {
            "name": "My Thermostat",
            "ip": "http://xxx.xxx.x.xx"
        }
    ]
}

The name can be whatever you want. The IP address must be the local IP address of the thermostat. To find this on the T7900:

  • Tap MENU.
  • Then Wi-Fi.
  • Then WiFi Status.
  • Here it will display the IP address of the unit.

Add multiple entries for additional thermostats.

Separate accessory for outdoor sensor

In version 0.2.2 I introduced a new feature that lets you add a separate accessory for an outdoor sensor. Many heat pump models (can) have a temperature sensor on them. And certain Venstar thermostat models (e.g. the T7900, which is what I test with) have the ability to read the temperature from this sensor.

To add the outdoor sensor as a separate accessory, you need only add it to the existing config file. For example:

{
    "platform": "VenstarThermostats",
    "thermostats": [
        {
            "name": "My Thermostat",
            "ip": "http://xxx.xxx.x.xx"
        },
        {
            "name": "Outside Temperature",
            "ip": "http://xxx.xxx.x.xx",
            "sensor": 1
        }
    ]
}

You'll see that the first entry ("My Thermostat") is the original thermostat entry from above. The second entry ("Outside Temperature") is the new one for the outdoor sensor. The name can be whatever you want. The IP address must be the local IP address of the thermostat (instructions above for finding this).

The key part is the "sensor": 1. That tells the plugin to add a temperature sensor accessory (instead of a full thermostat accessory) and to pull in the data from the outdoor sensor attached to the thermostat.

If (as will most often be the case) this outdoor sensor is part of the same thermostat you wish to control via HomeKit, than you put the same IP address for the sensor entry as you did for the thermostat entry.

At the moment, it is coded to only look for (and, as such, will only work with what is configured as) the outdoor sensor, and will not work with any other additional sensor(s) you have configured on your thermostat.