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-aiseg2

v1.0.1

Published

Panasonic AiSEG2 plugin for Homebridge.

Readme

Homebridge AiSEG2

A Homebridge platform plugin to control devices managed by a Panasonic AiSEG2 controller.

npm

Disclaimer

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

About

Supports Panasonic Advance Series Link Plus light switches registered to a Panasonic AiSEG2 controller.

All development and testing has been performed using an MKN704 and MKN713 controllers and should also work with the MKN705 as well. Note that long term use of the MKN713 was not as stable as the MKN704 with the former failing to respond after a period of time.

Configuration

To configure the plugin the hostname or IP address of the controller will need to be supplied as well as the password used to login to the web interface.

"platforms": [{
    "platform": "AiSEG2",
    "name": "AiSEG2",
    "host": "<controller IP address>",
    "password": "<controller password>",
    "synchroColourTone": true,
    "devices": [
        {
            "name": "<device name>",
            "synchroColourTone": false
        }
    ],
}]

Options

| Option | Type | Default | Description | |--------------------------|---------|-------------------|-----------------------------------------------------------------------------| | name | string | "AiSEG2" | Display name for this platform instance in Homebridge. | | host | string | "127.0.0.1" | IP address of the AiSEG2 controller | | pasword | string | "" | Basic auth password for the AiSEG2 controller | | 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 | |---------------------|---------|-----|-----------------------------------------------------------------| | name | string | Yes | The name of the accessory. | | 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.

Future Development

Since originally developing the codebase as a quick proof of concept I have added a Panasonic WTY2001 controller for some additional lights. This controller exposes the lights on the local network via Echonet Lite which is a much better interface and offers finer dimming control using homebridge-echonet-light or homebridge-echonet-lite.

The code as originally released was not very high quality and has since been massaged into better form with the assistance of AI tooling and is unlikely to see any further development as it works well enough for day to day use.