Matter  

Developer: Simon's Plugins
Category: Hubs and Protocol Bridges
Github: Github Repo
License: MIT License
Assistance: Get help!   
Plugin ID: com.simons-plugins.indigo-matter
Latest release: v2026.9.4 released on Aug. 10, 2026
Release downloaded: 1 times
Requires: Indigo v2024.2.0 or higher
(Check the Releases tab below for older releases that may have different requirements)
  Download latest release

indigo-matter

Matter device support for the Indigo home automation server — in both directions.

Matter in (the controller). Add Matter devices from the Domio iOS app or the plugin's own menu; control them as first-class Indigo devices (triggers, schedules, action groups, control pages, API). The plugin manages a matter-server instance, holds the Indigo-owned Matter fabric, translates Matter clusters ↔ Indigo device types, and owns runtime control for each device's lifetime.

Matter out (the bridge). Publish selected Indigo devices — Z-Wave, Insteon, Zigbee, MQTT, anything with a device record — outward as Matter accessories, so Apple Home can see and control them locally. Opt-in per device, nothing exported by default, from a second managed process. Apple Home is validated end-to-end. Alexa pairs and controls too, with a known caveat: newly-exported accessories can show stale/unresponsive in Alexa for some minutes before converging (issue #143). Google Home and SmartThings remain untested and unclaimed. See Exporting Indigo devices.

This is an independent, uncertified implementation. It is not certified by the Connectivity Standards Alliance (CSA), and is not affiliated with or endorsed by them. It works, and is validated against real hardware — but it carries none of the interoperability guarantees that come with a certified Matter controller. See Trademarks and certification.

Domio (iOS) ─┐
             ├── setup code ──▶ indigo-matter ──WebSocket──▶ matter-server ──IP──▶ Wi-Fi + Thread devices
plugin menu ─┘                       │
                                     └──WebSocket──▶ bridge node ──Matter──▶ Apple Home
                                        (export, opt-in)

Adding devices

The two entry points are equivalent, for Wi-Fi and Thread alike. There are three ways a device reaches one of them:

  • Share model — the usual path. An ecosystem you already own (Apple Home, Alexa, Google Home) does the out-of-box Bluetooth onboarding: the one step a headless Mac can't, since matter-server runs without BLE. The device is then shared to Indigo over plain IP, and the plugin joins as a second admin.
  • Factory-fresh Thread, via Domio — iOS commissions the device to the iPhone as part of that flow, which is what supplies the Thread credentials.
  • Already on your network, never commissioned — its printed code works directly, from either entry point.

Exporting Indigo devices (Matter out)

The plugin can also wear the Matter device role: a set of Indigo devices you choose is published as accessories on a Matter bridge that Apple Home commissions like any other accessory. One bridge, one pairing, however many devices.

  • Opt-in per device, default empty. A fresh install exports nothing, pairs nothing and runs no bridge process. Exporting is publishing — the device becomes operable from every ecosystem the bridge is paired with — so it is always a deliberate act.
  • You declare what each device is. Indigo cannot tell a plug from a lamp from a lock, so the export dialog asks, and defaults to the safest reading. Relays, dimmers, colour and colour-temperature lights, window coverings, locks, the seven sensor types and thermostats are supported; valves, fans, garage doors, sprinklers and MultiIO are not, and appear in the picker with the reason.
  • Expect an "uncertified accessory" prompt and choose Add Anyway. The bridge presents a development attestation certificate — as Homebridge, matterbridge and Home Assistant's bridge all do — and outbound attestation is the commissioning ecosystem's policy, not something this plugin can change.
  • Apple Home and Alexa validated; Google Home and SmartThings untested. Apple Home works end-to-end. Alexa pairs and controls too, with a known caveat: newly-exported accessories can show stale/unresponsive in Alexa for some minutes before converging (issue #143). Google Home and SmartThings remain untested and unclaimed; nothing here says they will or won't work.
  • A second npm package (indigo-matter-bridge), on the npm registry and installed from its own menu item.

Setup, pairing, recovery and troubleshooting: full install guide. How it works and what it can represent: MATTER.md → Indigo as a Matter bridge, or the typeset version: Field Notes № 3 → The bridge.

Status

Matter in — built and live-validated, including with real hardware. The full device-class catalogue is shipped — lighting (on/off/dimmer/colour), sensors, thermostats, fans, window coverings, locks, valves, buttons, smoke/CO, air quality, energy metering, battery levels, and bridges — plus failure hardening, fabric backup/restore, and a managed launchd LaunchAgent for matter-server. A real Tapo energy plug has been commissioned end-to-end through Domio and reports live power/energy to Indigo.

Validated with both Wi-Fi and Thread devices, and from both entry points — Domio and the plugin's own commission-by-setup-code menu. Thread provisioning is done by a device with a BLE radio and the network credentials (an admin-1 ecosystem, or the iPhone itself during the Domio flow); the plugin then joins over IP via that ecosystem's border router (HomePod/Apple TV, TBR-capable Echo, Nest Hub). See Field Notes № 2 — The controller for how the pieces fit.

Matter out — built, unit-tested on both sides, and validated live across every leg but one. The allow-list, the role mapping, endpoint persistence, pairing and fabric management, and the managed LaunchAgent are all in place, and the bridge node's own suite stands up a real Matter stack. On live hardware the bridge has been commissioned into Apple Home (uncertified prompt and all), pairing driven from the plugin's own menu has worked end to end, a second controller has joined alongside Apple Home — Alexa, as fabric #3 — an on/off light and a dimmer have been controlled in both directions, the one-click managed LaunchAgent chain has installed and run the bridge without hand intervention, and accessory identity has survived an upgrade without duplicating (2026-08-04 → 06, on the reference server). Still outstanding: the reboot leg of the accessory-identity check. Treat the export half as new. See MATTER.md for how it works.

Setup

Install the plugin from the Indigo Plugin Store (or download the .indigoPlugin.zip from Releases and double-click it), then set it up. It doesn't speak Matter directly — it drives matter-server, a separate Node.js process holding the Indigo-owned fabric. In local mode the plugin installs and manages that for you, so setup from here is three steps and no Terminal beyond installing Node:

1. Install Node.js 22 (≥ 22.13.0):

brew install node@22
brew link node@22
node --version          # confirm v22.x

Leave Node bin directory blank in the plugin config — auto-detect finds Homebrew first. (nvm works too; pin nodeBinDir explicitly if you use it.)

2. Install the Matter controller: Plugins ▸ Matter ▸ Install/update the Matter controller (matter-server). This installs the pinned version with the same Node it will run the server with, and pins that Node — which avoids the most common failure, installing with one Node and running with another whose native modules won't load.

3. Verify — the Indigo event log should show:

connected to matter-server, listening
reconciled N Matter node(s)

N is 0 on a fresh install; that's fine. If you instead see Connect call failed ('127.0.0.1', 5580), matter-server isn't running — that, plus the "On another computer" mode, fabric backups, upgrading and uninstalling, is covered in the full install guide.

To export Indigo devices as well, add a fourth step — Plugins ▸ Matter ▸ Install/update the Matter bridge — and then pick your devices in Manage Matter Exports…. The bridge starts itself once something is exported. Full walkthrough in the install guide.

Requirements

  • Indigo 2025.2+ on macOS.
  • Node.js ≥ 22.13.0 (Homebrew is the paved road; nvm works too) and the matter-server npm package — Beta, exact-pinned to 1.2.2 (DEFAULT_INSTALL_SPEC; the Install action uses this).
  • For export only: a second npm package, indigo-matter-bridge — on the npm registry (0.5.0 onward), exact-pinned to 0.8.0 (DEFAULT_INSTALL_SPEC) — installed by its own menu item.
  • Python dep: websockets (see Contents/Server Plugin/requirements.txt).
  • The Domio iOS app for adding devices — optional: the plugin menu's Commission device by setup code… does the same job from Indigo.

Documentation

Field Notes — the guides, properly typeset. Start here.

  • № 1 — What is Matter — the protocol primer: transports and Thread, border routers, commissioning, fabrics and multi-admin, and what "uncertified" really means.
  • № 2 — The controller — Matter in: the share model, adding and removing devices, what lands in Indigo, and troubleshooting.
  • № 3 — The bridge — Matter out: the separate bridge node, opt-in exports, pairing into an ecosystem, and what has and hasn't been validated.
  • № 4 — The Proving Ground — how this plugin is tested: the unit suites (plugin + bridge node), the device zoo, the virtual matter.js fleet, and live validation on a production server.

Setup is covered above; the full install guide has the "On another computer" mode, backups, upgrading and troubleshooting.

Development

pytest          # full unit suite; matter-server (WebSocket) and Indigo are mocked

Developer reference, in the repo — not intended as user documentation:

Trademarks and certification

This plugin is an independent, unofficial integration. It is not certified by the Connectivity Standards Alliance, and has no affiliation with, sponsorship from, or endorsement by the CSA.

"Matter" and the Matter logo are trademarks of the Connectivity Standards Alliance. They are certification marks — on a certified product they signal that it passed CSA testing. This plugin has not been through that process, so nothing here should be read as a claim that it has. For contrast, Home Assistant may display Matter branding because it holds two CSA certifications (Home Assistant as a certified user interface component, and the Open Home Foundation Matter Server as a certified software component).

What that means in practice:

  • The plugin speaks the Matter protocol via matter-server and works with real, certified devices — but it has not been tested against the CSA's certification suite, so device-by-device interoperability is not guaranteed.
  • Commissioning uses the share model, so the device is first commissioned by a certified ecosystem (Apple Home, Alexa, Google Home); this plugin joins as a second admin. Your device's own certification is unaffected by anything here.
  • The optional Allow test/development device certificates setting relaxes device attestation so uncertified devices (development boards, Homebridge/Matterbridge bridges) can be commissioned. It is off by default, warns on every start, and should be turned off once the device is paired.
  • The Matter bridge is uncertified in the other direction, and visibly so. It advertises with the specification's test vendor ID, so every ecosystem shows an "uncertified accessory" warning when you add it and you choose Add Anyway. That is the normal state for this class of software — Homebridge, matterbridge and Home Assistant's bridge all ship the same way — and it is not something the plugin can change: outbound, the trust policy belongs to the ecosystem doing the commissioning.

The icon bundles the Matter symbol from Wikimedia Commons, which is public domain for copyright purposes. See docs/branding/README.md for provenance.

License

MIT — see LICENSE.

Release details
Released on: Aug. 10, 2026
Requires: Indigo v2024.2.0+
Downloaded: 1 times 
Changes in this release

What's Changed

  • fix(commission): node ownership guard + reconcile claim discipline (#21, #22) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/164
  • feat(commission): fold late matter-server responses into the job table (#23) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/165
  • feat(commission): log and clean up when the reconcile window closes unclaimed (#24) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/166
  • docs(handover): commissioning quartet #21–#24 landed by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/168
  • feat(backup): restore extracts the bridge node's storage too (#136) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/169
  • fix(commission): harden the quartet — TOCTOU removal gate, node-id normalization, watchdog guard, honest logging (#21 #22 #23 #24 follow-up) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/170
  • refactor: split plugin.py behind the XML wiring (#146) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/172
  • docs: close and retire the handover — refs removed, HANDOVER.md gitignored by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/171
  • docs: release-prep — field-notes restructure + announcement blocker fixes [release] by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/173

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.8.20...v2026.9.4

Release details
Released on: Aug. 4, 2026
Requires: Indigo v2024.2.0+
Downloaded: 1 times 
Changes in this release

What's Changed

  • feat(export): E0 bridge-node skeleton (validation gate) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/119

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.22...v2026.7.23

Release details
Released on: Aug. 4, 2026
Requires: Indigo v2024.2.0+
Downloaded: 1 times 
Changes in this release

What's Changed

  • docs(export): PRD research pass + bridge protocol spec by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/118

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.21...v2026.7.22

Release details
Released on: Aug. 4, 2026
Requires: Indigo v2024.2.0+
Downloaded: 1 times 
Changes in this release

What's Changed

  • ci: fail the build if CFBundleVersion is too long for the Plugin Store by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/117

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.20...v2026.7.21

Release details
Released on: Aug. 4, 2026
Requires: Indigo v2024.2.0+
Downloaded: 7 times 
Changes in this release

What's Changed

  • docs(readme): lift the uncertified notice into the lede; fix the opening by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/116

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.19...v2026.7.20

Release details
Released on: Aug. 4, 2026
Requires: Indigo v2024.2.0+
Downloaded: 6 times 
Changes in this release

What's Changed

  • docs: user-facing docs pass — typeset guides, inline setup, correct commissioning by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/115

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.18...v2026.7.19

Release details
Released on: Aug. 4, 2026
Requires: Indigo v2024.2.0+
Downloaded: 6 times 
Changes in this release

What's Changed

  • chore(docs): drop the issue #79 working plan, now resolved by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/114

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.17...v2026.7.18

Release details
Released on: Aug. 4, 2026
Requires: Indigo v2024.2.0+
Downloaded: 7 times 
Changes in this release

What's Changed

  • feat(branding): add plugin store icon by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/113

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.16...v2026.7.17

Release details
Released on: Aug. 4, 2026
Requires: Indigo v2024.2.0+
Downloaded: 5 times 
Changes in this release

What's Changed

  • fix(ui): list nodes that created no devices, so empty bridges can be decommissioned by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/112

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.15...v2026.7.16

Release details
Released on: Aug. 3, 2026
Requires: Indigo v2024.2.0+
Downloaded: 6 times 
Changes in this release

What's Changed

  • docs(prd): Indigo Matter Export — Indigo as a Matter bridge by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/110

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.14...v2026.7.15

Release details
Released on: Aug. 3, 2026
Requires: Indigo v2024.2.0+
Downloaded: 6 times 
Changes in this release

What's Changed

  • docs(handover): 2026-08-03 afternoon — #105 diagnostic, #236, and a live Thread outage by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/109

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.13...v2026.7.14

Release details
Released on: Aug. 3, 2026
Requires: Indigo v2024.2.0+
Downloaded: 5 times 
Changes in this release

What's Changed

  • feat(bridges): explain a bridge that commissions but exposes nothing by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/108

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.12...v2026.7.13

Release details
Released on: Aug. 3, 2026
Requires: Indigo v2024.2.0+
Downloaded: 5 times 
Changes in this release

What's Changed

  • fix(server): matter-server supervision — reap on port, revive dead jobs, flag argument drift by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/107

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.11...v2026.7.12

Release details
Released on: Aug. 3, 2026
Requires: Indigo v2024.2.0+
Downloaded: 4 times 
Changes in this release

What's Changed

  • docs(handover): 2026-08-02/03 session — test-net DCL and the faults it exposed by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/106

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.10...v2026.7.11

Release details
Released on: Aug. 3, 2026
Requires: Indigo v2024.2.0+
Downloaded: 6 times 
Changes in this release

What's Changed

  • feat(server): opt-in --enable-test-net-dcl for dev/test device certificates by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/103

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.9...v2026.7.10

Release details
Released on: July 13, 2026
Requires: Indigo v2024.2.0+
Downloaded: 23 times 
Changes in this release

What's Changed

  • fix: CFBundleVersion must be 1.0.0 (plugin-store validation) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/102

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.8...v2026.7.9

Release details
Released on: July 12, 2026
Requires: Indigo v2024.2.0+
Downloaded: 17 times 
Changes in this release

What's Changed

  • fix(server): reap orphaned matter-servers holding the storage lock + clean reinstall by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/100

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.7...v2026.7.8

Release details
Released on: July 11, 2026
Requires: Indigo v2024.2.0+
Downloaded: 15 times 
Changes in this release

What's Changed

  • Fix post-2026.7.4 review: restart diagnostic + restart-fail + node gate (v2026.7.5) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/97

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.4...v2026.7.5

Release details
Released on: July 11, 2026
Requires: Indigo v2024.2.0+
Downloaded: 13 times 
Changes in this release

What's Changed

  • Install auto-restarts matter-server + log server version (v2026.7.4) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/96

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.3...v2026.7.4

Release details
Released on: July 11, 2026
Requires: Indigo v2024.2.0+
Downloaded: 12 times 
Changes in this release

What's Changed

  • Default matter-server to pinned 1.2.2 (v2026.7.3) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/95

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.2...v2026.7.3

Release details
Released on: July 11, 2026
Requires: Indigo v2024.2.0+
Downloaded: 13 times 
Changes in this release

What's Changed

  • Fix: node on PATH for matter-server install subprocess (v2026.7.2) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/94

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.1...v2026.7.2

Release details
Released on: July 11, 2026
Requires: Indigo v2024.2.0+
Downloaded: 13 times 
Changes in this release

What's Changed

  • Recover stranded port fix + harden matter-server install (v2026.7.1) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/93

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.7.0...v2026.7.1

Release details
Released on: July 10, 2026
Requires: Indigo v2024.2.0+
Downloaded: 10 times 
Changes in this release

What's Changed

  • Install/update matter-server from the plugin + pin the node (v2026.7.0) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/92

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.6.2...v2026.7.0

Release details
Released on: July 10, 2026
Requires: Indigo v2024.2.0+
Downloaded: 13 times 
Changes in this release

What's Changed

  • Surface matter-server startup failures instead of a silent crash-loop (v2026.6.2) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/91

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.6.1...v2026.6.2

Release details
Released on: July 9, 2026
Requires: Indigo v2024.2.0+
Downloaded: 14 times 
Changes in this release

What's Changed

  • fix+feat(config): "is matter-server on this Mac?" — simplify config, kill the :80 trap by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/88

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.5.0...v2026.6.1

Release details
Released on: July 6, 2026
Requires: Indigo v2024.2.0+
Downloaded: 13 times 
Changes in this release

What's Changed

  • Boolean State Configuration (0x0080): sensitivity state + Set Sensitivity action by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/87

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.4.2...v2026.5.0

Release details
Released on: July 6, 2026
Requires: Indigo v2024.2.0+
Downloaded: 21 times 
Changes in this release

What's Changed

  • test: zoo invariant pinning the PR #73 native-state class by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/86

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.4.1...v2026.4.2

Release details
Released on: July 6, 2026
Requires: Indigo v2024.2.0+
Downloaded: 18 times 
Changes in this release

What's Changed

  • Remove redundant native-state declarations from sensor device types by @Highsteads in https://github.com/simons-plugins/indigo-matter/pull/73

New Contributors

  • @Highsteads made their first contribution in https://github.com/simons-plugins/indigo-matter/pull/73

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.4.0...v2026.4.1

Release details
Released on: July 6, 2026
Requires: Indigo v2024.2.0+
Downloaded: 20 times 
Changes in this release

What's Changed

  • Split-endpoint energy measurement attribution (IKEA GRILLPLATS) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/80

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.3.2...v2026.4.0

Release details
Released on: July 5, 2026
Requires: Indigo v2024.2.0+
Downloaded: 18 times 
Changes in this release

What's Changed

  • feat: expectedFabricSlots warning + C3 direct-commissioning docs by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/78

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.3.1...v2026.3.2

Release details
Released on: June 13, 2026
Requires: Indigo v2024.2.0+
Downloaded: 37 times 
Changes in this release

What's Changed

  • chore: sync CFBundleVersion with PluginVersion at 2026.3.1 by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/69

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.3.0...v2026.3.1

Release details
Released on: June 10, 2026
Requires: Indigo v2024.2.0+
Downloaded: 5 times 
Changes in this release

What's Changed

  • feat(matter): Generic Switch cluster + node_event plumbing (#4) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/41

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.2.8...v2026.2.9

Release details
Released on: June 10, 2026
Requires: Indigo v2024.2.0+
Downloaded: 6 times 
Changes in this release

What's Changed

  • feat(matter): Pressure + Flow measurement sensors (#13) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/35

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.2.7...v2026.2.8

Release details
Released on: June 10, 2026
Requires: Indigo v2024.2.0+
Downloaded: 5 times 
Changes in this release

What's Changed

  • feat(matter): Valve cluster — water shut-off and irrigation valves (#12) by @simons-plugins in https://github.com/simons-plugins/indigo-matter/pull/39

Full Changelog: https://github.com/simons-plugins/indigo-matter/compare/v2026.2.6...v2026.2.7