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-echonet-light

v1.0.0

Published

A Homebridge plugin for controlling EchoneECHONETt Lite lighting devices.

Readme

Homebridge ECHONET Light

A Homebridge plugin for controlling ECHONET Lite lighting devices.

Disclaimer

Homebridge ECHONET Light is independently developed and is not in any way affiliated with or endorsed by the ECHONET Consortium. Any issues or damage resulting from use of this plugin are not the fault of the developer. Use at your own risk.

About

Homebridge ECHONET Lite auto-discovers lighting devices on the local network and exposes them in Apple HomeKit with support for the following device classes:

  • General Lighting (class 0x0290)
  • Mono-function Lighting (class 0x0291)

Features

  • Automatic discovery via ECHONET Lite multicast search (UDP port 3610), with periodic re-discovery to pick up newly powered-on devices.
  • Basic on/off switches are exposed as a switch, allowing users to present them as a Light or Fan accessory type in the Apple Home app.
  • Dimming switches are exposed as a lightbulb with brightness control, and optionally with a color temperature characteristic (see Synchro Colour Tone).
  • Live updates: the plugin subscribes to ECHONET Lite INF (status-change announcement) frames, so changes made from a wall switch or another controller appear in HomeKit immediately without polling.

Configuration

Add a platforms entry to your Homebridge config.json:

{
  "platforms": [
    {
      "platform": "echonet-light",
      "name": "ECHONET Light",
      "ipVersion": 4,
      "discoveryInterval": 600,
      "pollInterval": 5,
      "synchroColourTone": true,
      "devices": [
        {
          "serialNumber": "0000000000000000000000fe80dead",
          "synchroColourTone": false
        }
      ]
    }
  ]
}

Options

| Option | Type | Default | Description | |--------------------------|---------|-------------------|-----------------------------------------------------------------------------| | name | string | "ECHONET Light" | Display name for this platform instance in Homebridge. | | ipVersion | integer | 4 | IP stack to use. 0 = dual-stack, 4 = IPv4 only, 6 = IPv6 only. | | discoveryInterval | integer | 300 | Seconds between device re-discovery runs. Minimum 10. | | pollInterval | integer | 5 | Seconds between periodic state polls for each known device. Minimum 1. | | synchroColourTone | boolean | false | Globally enable colour temperature characteristic for all dimmable devices. | | devices | array | [] | Per-device overrides (see below). |

Per-device overrides

Each entry in the devices array targets a specific device by its serial number. The plugin logs this value on first discovery and it can also be found under the accessory info panel in the web UI.

| Option | Type | Req | Description | |---------------------|---------|-----|-----------------------------------------------------------------| | serialNumber | string | Yes | The device serial number. | | synchroColourTone | boolean | No | Per-device override for the global synchroColourTone setting. |


Synchro Colour Tone

Panasonic offers synchro colour tone lamps that shift colour temperature directly in relation to the dimmer brightness setting. When synchroColourTone is true, the plugin exposes a HomeKit color temperature characteristic directly linked to brightness so when either the temperature or brightness controls are adjust the other moves in unison. This setting attempts to match the colour temperature and brightness curve that is applied within the lamp so that the colour temperature can be set andpo tentially support adaptive lighting in Apple Home.