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 🙏

© 2025 – Pkg Stats / Ryan Hefner

homebridge-systemair-ventilator

v1.1.21

Published

A Homebridge plugin for controlling Systemair Ventilators.

Readme

Homebridge Systemair Ventilator Plugin

This is a Homebridge plugin for controlling a Systemair Ventilator through its web interface and exposing it to Apple HomeKit.
You must have a SAVEConnect WIFI module connected for this to work.

You will need the IP address of the SAVEConnect device and include it in the plugin settings.


Installation

If Homebridge is not already installed, use the following command to install it globally:

1. Install Homebridge

npm install -g homebridge
2. Install the plugin
bash
Copy code
npm install -g homebridge-systemair-ventilator
3. Configure the plugin
Edit the Homebridge config.json file and add the following under "accessories":

json
Copy code
{
  "accessories": [
    {
      "accessory": "SystemairVentilator",
      "name": "Living Room Ventilator",
      "ip": "x.x.x.x"
    }
  ]
}
Replace x.x.x.x with the IP address of your Systemair SAVEConnect device.

4. Restart Homebridge
bash
Copy code
sudo systemctl restart homebridge
✨ What’s New / Recently Updated
🔥 Temperature control via HomeKit (NEW)
A Thermostat service is now exposed in HomeKit

View and change the target temperature directly from the Apple Home app

A temperature dial is shown in HomeKit

Temperature range: 10°C – 30°C (0.5°C steps)

❌ Fixed: Temperature resetting to 18°C
Previously, using the Refresh function forced the temperature back to 18°C

This behavior has been fixed

Refresh now preserves the user-selected temperature

🧠 Improved HomeKit stability
Safe fallbacks ensure HomeKit always receives valid temperature values

Prevents HomeKit from hiding the thermostat UI due to missing or invalid data

🔄 Improved Refresh behavior
Refresh mode no longer overrides temperature settings

Fan speed and temperature are automatically restored after refresh completes

Features
Turn ventilation On / Off

Control fan speeds: Low, Normal, High

Adjust target temperature from HomeKit

Refresh / boost ventilation mode

Timer status exposed as a battery-style indicator

Compatible with HomeKit scenes and automations

Fan speed mapping
ini
Copy code
speed === 1 → 0%   (Off)
speed === 2 → 16%  (Low)
speed === 3 → 50%  (Normal)
speed === 4 → 83%  (High)
Troubleshooting
If the ventilator does not respond:

Ensure the IP address in the configuration is correct

Verify that the SAVEConnect WIFI module is online

Restart Homebridge after installing or updating the plugin

Check Homebridge logs for error messages

Temperature dial not visible?
HomeKit caches accessory layouts aggressively.

If you updated from an older version:

Remove the accessory from the Apple Home app

Restart Homebridge

Re-add the accessory

Notes
This plugin communicates locally with the Systemair SAVEConnect web interface

No cloud services are required

Removing and re-adding the accessory is required when new services (like temperature control) are added