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 🙏

© 2026 – Pkg Stats / Ryan Hefner

homebridge-controme-thermostat

v4.0.2

Published

Homebridge plugin for controme thermostat with heater only

Downloads

14

Readme

Homebridge Plugin for Controme

Build Status

Description

This plugin exposes a thermostat to HomeKit and makes it controllable via HTTP requests. The plugin will poll your thermostat at regular intervals and present you with this information when requested. The plugin also allows you so control a number thermostat variables via HomeKit such as the target temperature. This thermostat plugin works on the same RPI where the heating system software works.

Prerequisites

First all, make sure the Pi is up-to-date.

$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get install curl

Install Node.js

Install the LTS version of Node.js from the official repository, as well as additional dependencies:

$ curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -
$ sudo apt install -y nodejs gcc g++ make net-tools

Install Homebridge and Homebridge UI

Install Homebridge and the Homebridge UI using the following command:

$ sudo npm install -g --unsafe-perm homebridge homebridge-config-ui-x

To setup Homebridge as a service that will start on boot you can use the provided hb-service command.

$ sudo hb-service install --user homebridge

This command will do everything that is required to setup Homebridge and the Homebridge UI as a service on your system, it will create the user if it does not already exist, and create the default Homebridge config.json under /var/lib/homebridge if it does not already exist.

When setting up Homebridge as a service using this command, the UI will stay online even if Homebridge is crashing due to a bad plugin or configuration error.

Plugin Installation

$ sudo npm install -g --unsafe-perm homebridge-controme-thermostat

Run the python script named config_builder.py. You can change the necessary information here. This will generate the config file to the specific path. This file is saved in the specific path /home/pi/.homebridge/config.json

Configuration

The following parameters are mandatory:

"accessories": [
  {
    "accessory": "ContromeThermostat",
    "id": 1,
    "name": "Arbeitszimmer",
    "homeId": 1,
    "server": "https://test.fwd.controme.com",
    "serial": "b3-e2-27-14-a3-2b",
    "email": "[email protected]",
    "password": "test"
  }
]

The optional parameters are as follows:

"accessories": [
  {
    "maxTemp": 35,
    "minTemp": 10,
    "pollInterval": 20
  }
]

Known Issues