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-comelit-icona

v1.2.1

Published

Comelit ICONA support for Homebridge: https://github.com/nfarina/homebridge

Downloads

11

Readme

Homebridge

Comelit HUB integration for Homebridge

Comelit

Description

This is a Homebridge platform plugin to expose Comelit ICONA features to HK. The code is based on the reverse engineering of the official protocol, so expect bugs. The plugin currently supports only listing and opening connected doors/gates.

Installation

  1. Install homebridge
  2. Install this plugin: npm install -g homebridge-comelit-icona
  3. Update your config.json file

Configuration examples

You can setup the plugin by using the builtin Homebridge WEB UI tool. You need at least to provide:

  • bridge_url: URL of the ICONA Bridge server
  • bridge_port: TCP port of the ICONA Bridge server (optional, default is 64100)
  • icona_token: Authentication token used to communicate with the bridge

Here is a sample config for the plugin:

{
  "platform": "Icona",
  "name": "Icona",
  "bridge_url": "192.168.1.100",
  "icona_token": "yoursuperrsecrettoken"
}

The plugin will automatically fetch the configuration on startup and configuring for you all the gates/doors you have mapped in the system. By default, they will be mounted as temporized gate with a default configuration:

{
  "type": "temporized_gate",
  "opening_time": 20,
  "closing_time": 20,
  "opened_time": 60
}

You can override these settings by adding a devices section in the config.json file (you can use the WEB UI if you prefer). You can choose between simple_gate and temporized_gate: the former is a door that will reset its state after a period of opened_time seconds. The latter is an automatic gate that opens in opening_time seconds, stay opened for opened_time seconds and then closes in closing_time seconds. Usually opening_time and closing_time are equals.

Simple gate example:

{
  "platform": "Icona",
  "name": "Icona",
  "bridge_url": "192.168.1.100",
  "icona_token": "yoursuperrsecrettoken",
  "devices": [
    {
      "name": "NAME_OF_THE_DOOR",
      "type": "simple_gate",
      "opened_time": 120
    }
  ]
}

Temporized gate example:

{
  "platform": "Icona",
  "name": "Icona",
  "bridge_url": "192.168.1.100",
  "icona_token": "yoursuperrsecrettoken",
  "devices": [
    {
      "name": "NAME_OF_THE_DOOR",
      "type": "temporized_gate",
      "opening_time": 30,
      "closing_time": 30,
      "opened_time": 120
    }
  ]
}