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

matterbridge-tado-hw

v0.5.9

Published

A Matterbridge plugin that connects Tado° V2/V3/V3+ hot water control to the Matter smart home ecosystem

Readme

matterbridge-tado-hw

npm npm npm Build and Lint Test

A Matterbridge plugin that connects Tado° V2/V3/V3+ hot water control
to the Matter smart home ecosystem.

Tado is a trademark of tado GmbH.

Installation

  1. Open the Matterbridge web interface, e.g. at http://localhost:8283/.
  2. Under Install plugins type matterbridge-tado-hw in the Plugin name or plugin path search box, and click Install ⬇️.
  3. The Matterbridge log output will include an authorisation URL. Copy the listed URL into a web browser, login to your tado° account, and approve access.

Installation using Command Line

  1. Stop Matterbridge:
    sudo systemctl stop matterbridge
  2. Install the plugin:
    npm install -g matterbridge-tado-hw
  3. Register it with Matterbridge:
    sudo -u matterbridge matterbridge -add matterbridge-tado-hw
  4. Restart Matterbridge:
    sudo systemctl start matterbridge
  5. The Matterbridge log output will include an authorisation URL. Copy the listed URL into a web browser, login to your tado° account, and approve access.

Example matterbridge-tado-hw.config.json

{
    "name":                 "matterbridge-tado-hw",
    "type":                 "DynamicPlatform",
    "pollInterval":         300,
    "blackList":            [],
    "whiteList":            [],
    "debug":                false,
    "unregisterOnShutdown": false
}

Advanced Configuration

You can include additional settings in matterbridge-tado-hw.config.json to customise the behaviour or enable special debug features:

| Key | Default | Description | ----------------------- | ------------------ | --- | nametypeversion | n/a | These are managed by Matterbridge and do not need to be set manually. | pollInterval | 1200 | Specifies the interval in seconds between polling the tado° API for the hot water zone status. | blackList | [] | If the list is not empty, then any hot water control devices with matching serial numbers will not be exposed as Matter devices. | whiteList | [] | If the list is not empty, then only hot water control devices with matching serial numbers (and not on the blacklist) will be exposed as Matter devices. | debug | false | Sets the logger level for this plugin to Debug, overriding the global Matterbridge logger level setting. | unregisterOnShutdown | false | Unregister all exposed devices on shutdown. This is used during development and testing; do not set it for normal use.

Tado° apply daily usage limits to third-party use of their REST API. The default value for pollInterval issues one request per hot water controller every 20 minutes, resulting in 72 requests/day. Users with active Auto-Assist subscriptions may prefer to use a shorter interval.

| Auto-Assist Subscription | Requests/Day | | :----------------------: | -----------: | | ❌ | 100 | | ✅ | 20,000 |

Functionality

The plugin exposes hot water control of tado° V2/V3/V3+ Extension Kit (BU01) or Wireless Receiver (EK01) units as Matter On/Off Switches. Other functionality is natively exposed to HomeKit by the tado° devices, so is not duplicated by this plugin.

Tado° X is not supported.

Changelog

All notable changes to this project are documented in CHANGELOG.md.

Reporting Issues

If you have discovered an issue or have an idea for how to improve this project, please open a new issue using the appropriate issue template.

Pull Requests

As explained in CONTRIBUTING.md, this project does NOT accept pull requests. Any PRs submitted will be closed without discussion.

ISC License (ISC)

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.