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

@ushuz/homebridge-airthings-ble

v1.1.2

Published

Homebridge plugin for Airthings air quality monitors over Bluetooth LE

Readme

@ushuz/homebridge-airthings-ble

Homebridge plugin for Airthings air quality monitors over Bluetooth LE.

Sensor protocol is ported from the official Airthings BLE library used by Home Assistant.

BLE stack: node-ble (BlueZ over D-Bus, pure JavaScript — no native HCI bindings). Linux only (Raspberry Pi / Homebridge OS).

Supported devices

  • Wave Gen 1
  • Wave Mini
  • Wave Plus
  • Wave Radon (Wave 2)
  • Wave Enhance
  • Corentium Home 2

Not supported (BLE used only for onboarding): Hub, Renew, View series.

Requirements

| Component | Version | | --- | --- | | Homebridge | 1.8.5+ (2.x also supported) | | Node.js | 20.18.0+ (or 22.x) | | OS | Linux with BlueZ (Raspberry Pi) |

Raspberry Pi / Linux Bluetooth

sudo apt-get update
sudo apt-get install -y bluetooth bluez
sudo systemctl enable --now bluetooth

node-ble talks to BlueZ on the system D-Bus. Ensure the Homebridge user can use org.bluez (membership in the bluetooth group, or a D-Bus policy such as the one in the node-ble README).

No setcap / raw HCI capabilities are required (unlike noble).

Install

hb-service add @ushuz/homebridge-airthings-ble
# or
npm install -g @ushuz/homebridge-airthings-ble

Restart Homebridge after install.

Config

Example config.json platform block:

{
  "platform": "AirthingsBLE",
  "name": "Airthings BLE",
  "refreshInterval": 300,
  "scanDuration": 20,
  "isMetric": true,
  "co2AlertThreshold": 1000,
  "hciDeviceId": 0,
  "debug": false,
  "devices": []
}

| Field | Default | Description | | --- | --- | --- | | refreshInterval | 300 | Seconds between BLE polls (min 300 = 5 minutes). | | scanDuration | 20 | Seconds to scan at startup. | | isMetric | true | Radon in Bq/m³ when true, pCi/L when false. | | co2AlertThreshold | 1000 | ppm; HomeKit CO₂ Detected is abnormal at or above this. (Not provided over BLE by the device.) | | hciDeviceId | 0 | BlueZ adapter index (hci0). Match other BLE plugins for shared locking. | | debug | false | Verbose BLE logs. | | devices | [] | Optional filter list. Empty = auto-discover nearby Airthings sensors by manufacturer data. |

Optional device filter

"devices": [
  {
    "serialNumber": "2930123456",
    "name": "Basement Wave Plus"
  },
  {
    "address": "aa:bb:cc:dd:ee:ff",
    "name": "Bedroom Wave Mini"
  }
]

Serial numbers come from BLE manufacturer data (same as the Airthings app / packaging).

Sharing the adapter with other BLE plugins

Both this plugin and @ushuz/homebridge-govee-ble use node-ble (BlueZ D-Bus), so they no longer fight over exclusive raw HCI sockets. They still take a short-lived directory lock ($TMPDIR/homebridge-ble-hci{N}.lock/) around scan/connect so only one plugin drives the radio at a time. Set the same hciDeviceId on both.

HomeKit services

See the plugin UI / accessory characteristics for temperature, humidity, CO₂, VOC, pressure, radon, battery, and air quality mappings.