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-rainbird-sprinklers

v1.0.7

Published

RainBird ESP-TM2 sprinkler platform voor Homebridge via LNK WiFi — zones, kleppen, pomp en regensensor

Readme

homebridge-rainbird-sprinklers

Homebridge platform plugin for RainBird ESP-TM2 irrigation controllers with LNK WiFi module.

Exposes each zone as an irrigation valve in HomeKit, with optional rain sensor support.

Requirements

  • RainBird ESP-TM2 (or compatible) controller
  • RainBird LNK WiFi module connected to the same network
  • Homebridge v2.0.0 or later

Installation

Install via the Homebridge UI or manually:

npm install -g homebridge-rainbird-sprinklers

Configuration

Add the platform to your Homebridge config.json:

{
  "platform": "RainBirdSprinklers",
  "name": "RainBird",
  "host": "192.168.1.100",
  "password": "your-rainbird-password",
  "rainSensor": true,
  "rainSensorName": "Rain Sensor",
  "zones": [
    { "id": 1, "name": "Front Garden", "defaultDuration": 10 },
    { "id": 2, "name": "Back Garden", "defaultDuration": 15 },
    { "id": 3, "name": "Side Garden", "defaultDuration": 10 }
  ]
}

| Option | Type | Required | Description | |--------|------|----------|-------------| | host | string | yes | IP address of the RainBird LNK WiFi module | | password | string | yes | Password configured in the RainBird app | | rainSensor | boolean | no | Expose rain sensor as a leak sensor (default: true) | | rainSensorName | string | no | Name for the rain sensor accessory (default: "Rain Sensor") | | zones | array | yes | List of zones to expose | | zones[].id | number | yes | Zone number (1-based) | | zones[].name | string | yes | Display name in HomeKit | | zones[].defaultDuration | number | no | Default run time in minutes (default: 10) |

HomeKit Accessories

Each zone is exposed as an Irrigation Valve accessory with:

  • On/off control
  • Adjustable duration (via the HomeKit timer slider)
  • Remaining duration countdown

The rain sensor (if enabled) is exposed as a Leak Sensor — active when rain is detected, which can be used in HomeKit automations to prevent irrigation when it rains.

Child Bridge

It is recommended to run this plugin as a child bridge for better stability. Enable this in the Homebridge UI under the plugin settings.