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-infinitive

v1.0.1

Published

Homebridge plugin for the Infinitive HVAC control server

Downloads

2

Readme

homebridge-infinitive

A Homebridge plugin for Infinitive, a system that connects to a Carrier Infinity HVAC serial control bus via an RS-485 dongle and allows for networked control over the thermostat and HVAC units. homebridge-infinitive exposes the following features to Apple HomeKit:

  • Read and set your thermostat's current temperature and heating/cooling mode.
  • See whether your thermostat is actively heating or cooling.
  • Set and store separate target temperatures for heating and cooling.
  • Full support for auto mode and temperature setpoints.
  • Multiple independent thermostats.
  • Can optionally expose sensors representing outdoor temperature and humidity, measured at your HVAC cabinet.
  • Voice control and automation via standard HomeKit features.

These features aren't implemented just yet:

  • Non-HomeKit updates made to your HVAC system (through the thermostat or Infinitive API, for example) will not immediately push an update to HomeKit.

The following features are not supported:

  • Thermostat-level scheduling or vacation mode. These are best done via HomeKit.
  • Multi-zone Infinity control (requires Infinitive support).
  • In-depth heat pump or electric heating control.

Installation

First, get Infinitive working; its repo has fairly complete steps. My own recommendations are to host Infinitive on a small embedded system like a Raspberry Pi or any of the Pine64 SBCs, keep it indoors by connecting your RS-485 adapter to your thermostat's A and B lines with short bits of wire (you'll likely have to drill a couple of holes in your thermostat mount), and host Infinitive behind a strong reverse proxy like Nginx with HTTP basic auth enabled. See my own configuration at home for an example of a ruggedized Infinitive installation.

Configuration

This section assumes you have a Homebridge installation and have installed this plugin. If not, Homebridge's documentation around this is fairly complete.

The recommended way to configure this plugin is via homebridge-config-ui-x.

To manually configure the plugin, insert a section into your config with the following fields:

| Field | Value | | ---------- | ---------------------------------------------------------------- | | platform | Must be infinitive | | name | A friendly name for the thermostat | | url | The base URL for the Infinitive server (IE, http://infinitive) | | username | The HTTP basic auth username for the server (optional) | | password | The HTTP basic auth password for the server (optional) | | includeOutdoorSensors | Whether to include HomeKit sensors for outdoor temperature and humidity |