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

v1.0.1

Published

Homebridge plugin for Ambientika ventilation units – Apple Home, Google Home, Amazon Alexa

Readme

homebridge-ambientika

Apple Home, Google Home & Amazon Alexa integration for Ambientika ventilation units

This Homebridge plugin connects Ambientika ventilation units to Apple HomeKit (and via Homebridge also to Google Home and Amazon Alexa).

Works via the Ambientika MQTT Bridge – the bridge handles cloud communication, this plugin exposes the devices to HomeKit.

Features

  • Control ventilation mode (Auto, Manual, Night, Standby)
  • Adjust fan speed
  • Monitor humidity, supply air temperature, air quality
  • Filter alarm notification in Home app
  • Works with Siri: "Hey Siri, set ventilation to night mode"
  • Works with Google Home and Amazon Alexa via Homebridge

Prerequisites

  1. Homebridge installed (see homebridge.io)
  2. Ambientika MQTT Bridge running and publishing to an MQTT broker
  3. MQTT broker (e.g. Mosquitto) accessible from your Homebridge host

Installation

Via Homebridge UI (recommended)

  1. Open the Homebridge UI
  2. Go to Plugins
  3. Search for homebridge-ambientika
  4. Click Install

Via npm

npm install -g homebridge-ambientika

Configuration

Add to your Homebridge config.json:

{
  "platforms": [
    {
      "platform": "AmbientikaPlugin",
      "name": "Ambientika",
      "mqttHost": "localhost",
      "mqttPort": 1883,
      "mqttUsername": "",
      "mqttPassword": "",
      "topicPrefix": "ambientika"
    }
  ]
}

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | mqttHost | string | localhost | MQTT broker hostname or IP | | mqttPort | number | 1883 | MQTT broker port | | mqttUsername | string | | MQTT username (optional) | | `mqttPassword` | string | | MQTT password (optional) | | topicPrefix | string | ambientika | MQTT topic prefix (must match bridge config) |

HomeKit Accessories

Each Ambientika device appears as an Air Purifier accessory in the Home app with:

  • Active / Inactive – turns ventilation on (Auto) or off (Standby)
  • Auto / Manual mode – switches between sensor-driven and manual control
  • Fan speed – Low / Medium / High (shown as rotation speed %)
  • Humidity sensor – current room humidity
  • Temperature sensor – supply air temperature
  • Air quality sensor – air quality index (maps to HomeKit levels)
  • Filter maintenance – shows alert when filter needs service

Siri Commands

  • "Hey Siri, turn on ventilation"
  • "Hey Siri, set ventilation to automatic"
  • "Hey Siri, what is the humidity in the bedroom?"

Architecture

Ambientika Cloud
      |
      v
Ambientika MQTT Bridge  (Python, polls cloud API)
      |
      v
MQTT Broker  (Mosquitto)
      |
      v
homebridge-ambientika  (this plugin, subscribes to MQTT)
      |
      v
Homebridge  ->  Apple HomeKit / Google Home / Amazon Alexa

License

MIT