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-somfy-tahoma

v1.0.1

Published

Homebridge plugin for interacting with the Somfy TaHoma box through its local API.

Readme

Homebridge Somfy TaHoma

Quality Gate Status npm npm license code size

Control your Somfy TaHoma gateway locally from Homebridge and expose supported devices to Apple Home.

Important note

This plugin is based on Somfy local API access (Developer Mode).
Homebridge must run on the same local network as your TaHoma gateway.

Good news: once local access is configured, device control stays local.

Why this plugin?

This plugin talks directly to your TaHoma box on your local network.

  • No cloud dependency for normal control
  • Fast local updates in HomeKit
  • Guided setup from the Homebridge UI
  • Automatic discovery of compatible TaHoma gateways

Compatibility

Current v1 support:

| Device type | HomeKit service | Status | | --- | --- | --- | | IO/HomeControl roller shutters | WindowCovering | ✅ Supported | | IO/HomeControl garage doors | GarageDoorOpener | ✅ Supported | | Other TaHoma device families | N/A | 🚫 Not supported yet |

Prerequisites

  • Homebridge ^1.8.0 or ^2.0.0-beta.0
  • Node.js ^20.18.0 or ^22.10.0 or ^24.0.0
  • A Somfy TaHoma gateway on the same local network as Homebridge
  • Developer Mode enabled on the gateway
  • A valid TaHoma developer token

Quick Start

  1. Install this plugin from the Homebridge UI.
  2. Open plugin settings for Somfy TaHoma.
  3. Enable Developer Mode in the TaHoma app (tap gateway PIN 7 times).
  4. Generate a developer token in the app and copy it.
  5. In the setup wizard:
    • Discover your gateway (or enter host/IP manually)
    • Paste the token
    • Validate connection
    • Optionally ignore specific devices
  6. Save configuration and restart Homebridge if requested.

Configuration

Minimal config.json platform block:

{
  "platform": "SomfyTaHoma",
  "name": "Somfy TaHoma",
  "ip": "192.168.1.100",
  "token": "paste-token-generated-in-tahoma-app",
  "pollIntervalSeconds": 3,
  "ignoredDeviceUrls": []
}

Notes:

  • ip accepts IP, hostname, or HTTPS host format.
  • Default gateway port is 8443.
  • pollIntervalSeconds is optional and controls sync frequency (integer 1..60, default 3).
  • ignoredDeviceUrls keeps selected devices out of HomeKit.

What happens at runtime?

  • The plugin syncs devices using pollIntervalSeconds (default: 3 seconds).
  • New supported devices are added automatically.
  • Removed devices are cleaned from Homebridge cache.
  • Unsupported devices are skipped (debug logs explain why).

Security

  • Local API calls use HTTPS.
  • TLS is validated with Somfy/Overkiz CA roots.
  • If needed, the plugin retries with peer certificate fingerprint pinning.

Troubleshooting

If nothing appears in HomeKit:

  1. Verify Homebridge and TaHoma are on the same LAN.
  2. Re-check Developer Mode is enabled.
  3. Regenerate a token and paste it again.
  4. Use the wizard validation step and review unsupported devices.
  5. Enable Homebridge debug logs to see classification and API errors.

Disclaimer

[!CAUTION] This software is provided as-is. It can control real devices (doors, shutters). Use it carefully.

Development

npm install
npm run lint
npm run build
npm run watch
  • npm run watch builds, links the plugin, and runs a development loop with automatic restarts.

License

Apache-2.0