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

@ronniepettersson/homebridge-dummy

v1.3.3-color-led-2

Published

Create Homebridge accessories to help with automation and control — scheduling, delays, sensors, commands, webhooks, and more

Readme

homebridge-dummy

Homebridge plugin to create fake accessories for assisting with advanced Apple HomeKit automations

verified-by-homebridge hoobs-certified
npm npm
Discord

Disclaimer

Any issues or damage resulting from use of this plugin are not the fault of the developer. Use at your own risk.

v1.0 Migration

tl;dr

‼️ There are significant code changes between v0.9 and v1.0 which means you will need to reconfigure HomeKit automations after upgrading. Homebridge Dummy will try to help migrate old accessories.

Why?

The original HomebridgeDummy was written almost 10 years ago and uses the now deprecated Accessory Plugin architecture.

While this still works okay for now, migrating the code to use Platform Plugins will future-proof Homebridge Dummy and allow for more modern and robust design patterns.

The architecture used in v1.0 will make it much easier to improve and extend this plugin going forward and already includes several new features.

Drawbacks

Unfortunately, there is no built-in way to migrate existing accessory plugins to platform plugins. This means that all accessories will be considered "new" by HomeKit, so any existing automations or room setups will be lost.

However, Homebridge Dummy will try to help migrate the accessory configurations to the new system to prevent you having to set them all up again in Homebridge.

HOOBS Users

Homebridge Dummy now requires customUi for the config UI to help with migration from older versions, translations, UUID generation and some other useful tools. Unfortunately, HOOBS does not support customUi.

If you use HOOBS your current options are:

  1. Upgrade to v1.0+ and use Advanced Mode to manually edit the JSON config
  2. Continue to use v0.9.2 which should continue to work for the foreseeable future but won't include any of the new features
  3. Migrate your system to Homebridge which is very actively developed and has an engaged community of developers

You may also add a comment on this ticket to help encourage the HOOBS team to add a "sidecar" for Homebridge Dummy.

Migration Flow

⚠️ Please make sure to restart both Homebridge Service AND Homebridge UI after upgrading to v1.0 or you will experience issues with Homebridge Dummy configuration.

Once you have installed v1.0, click on the icon to configure the Homebridge Dummy plugin in the Homebridge UI and it will walk you through the necessary questionnaire.

Alternatively, you can add the following to "platforms" in your config.json

{
    "name": "Homebridge Dummy",
    "platform": "HomebridgeDummy",
    "migrationNeeded": true
}

You will need to restart Homebridge after completing the flow for changes to take effect.

⚠️ If you are using child bridges with v0.9, you may need to restart Homebridge twice for migrated accessories to show up correctly.

You may safely ignore any "No plugin was found…" errors you see in the Homebridge logs. These should go away after a few Homebridge restarts.

Problems?

This is an experimental flow and may not work as intended. If you see "Sorry, something went wrong with the accessory migration" or encounter other issues, please create an issue.

The first thing the flow does is create a backup called config.json.bak in your Homebridge directory. If all else fails, you can replace your config.json with the backup and downgrade to Homebridge Dummy v0.9 to restore your previous accessories.

About

With this plugin, you can create any number of fake accessories which are useful for advanced automation with HomeKit scenes. Features include scheduling to trigger at a specific interval or times, resetting automatically after a delay, activating sensors such as motion or occupancy, running arbitrary commands such as cron, and more.

Currently, Doors, Garage Door Openers, Lightbulbs, Locks, Outlets, Switches, Thermostats, Windows, and Window Coverings are supported. If there is a particular device or feature you'd like to see, please create an issue.

Configuration

Using the Homebridge Config UI is the easiest way to set up this plugin. However, if you wish to do things manually then you will need to add the following to your Homebridge config.json:

{
    "name": "Homebridge Dummy",
    "accessories": [
        {
            "id": "string",
            "name": "string",
            "type": "Door | GarageDoorOpener | Lightbulb | LockMechanism | Outlet | Switch | Thermostat | Window | WindowCovering",
            "groupName": "string",
            "timer": {
                "delay": number,
                "units": "MILLISECONDS | SECONDS | MINUTES | HOURS",
                "random": true | false
            },
            "schedule": {
                "type": "INTERVAL" | "CRON",
                "interval": number,
                "units": "MILLISECONDS | SECONDS | MINUTES | HOURS",
                "random": true | false,
                "cron": "string"
            },
            "sensor": {
                "type": "CarbonDioxideSensor | CarbonMonoxideSensor | ContactSensor | LeakSensor | MotionSensor | OccupancySensor | SmokeSensor",
                "timerControlled": true | false
            },
            "limiter": {
                "id": "string",
                "limit": number,
                "units": "MILLISECONDS | SECONDS | MINUTES | HOURS",
                "period": "HOUR | DAY | WEEK | MONTH",
            },
            "temperatureUnits": "C" | "F",
            "defaultOn": true | false,
            "defaultBrightness": 0-100,
            "defaultHue": 0-360,
            "defaultSauration": 0-100,
            "defaultColorTemperature": number,
            "defaultLockState": "locked" | "unlocked",
            "defaultPosition": "open" | "closed",
            "defaultThermostatState": "auto" | "heat" | "cool" | "off",
            "defaultTemperature": number,
            "commandOn": "string",
            "commandOff": "string",
            "commandLock": "string",
            "commandUnlock": "string",
            "commandOpen": "string",
            "commandClose": "string",
            "commandTemperature": "string",
            "enableWebook": true | false,
            "resetOnRestart": true | false,
            "disableLogging": true | false
        }
        …
    ],
    "platform": "HomebridgeDummy",
    "verbose": true | false,
    "webhookPort": number,
}

All fields are optional unless noted with an asterisk (*)

General

  • id* - A unique identifier for the accessory. Changing this value will create a new accessory.
  • name* - The display name for the accessory in HomeKit
  • type* - The type of accessory

Valid values for type are:

  • Door
  • GarageDoorOpener
  • Lightbulb
  • LockMechanism
  • Outlet
  • Switch
  • Thermostat
  • Window
  • WindowCovering

Group

  • groupName - Items sharing the same group name will be collected together in the Home app UI

⚠️ Adding/removing/changing the group name will require you to reconfigure any HomeKit scenes or automations

Timer

Return the accessory to its default value after the specified delay

  • timer.delay — If defined, the switch will automatically toggle after this many milliseconds/seconds/minutes/hours
  • timer.units — The units to use for delay above (MILLISECONDS, SECONDS, MINUTES, or HOURS). *Required if delay is set.
  • timer.random — If true, the delay will be randomized with a maximum value of timer.delay

Schedule

Set the accessory to its opposite (non-default) value at specified interval or times

  • schedule.type — Automatically set the accessory to it's non-default value
  • schedule.interval — Trigger the accessory after this many milliseconds/seconds/minutes/hours. *Required if schedule.type = INTERVAL
  • schedule.units — The units to use for the interval (MILLISECONDS, SECONDS, MINUTES, or HOURS) *Required if schedule.type = INTERVAL
  • schedule.random — If true, the interval will be randomized with a maximum value of schedule.interval
  • schedule.cron — One of @secondly, @minutely, @hourly, @daily, @weekly, @weekdays, @weekends, @monthly, @yearly, or CUSTOM_CRON. *Required if schedule.type = CRON
  • schedule.cronCustom - Custom cron string for triggering the accessory. *Required if schedule.cron = CUSTOM_CRON

Limiter

Restrict the total time this accessory can be set to its non-default value, for each specified period

  • limiter.id - A random id (such as UUID) for storing the limit. Change this value to reset the limit.
  • limiter.limit - The total time number of seconds/minutes/hours that this accessory may run for each period
  • limiter.units - The units to use for delay above (MILLISECONDS, SECONDS, MINUTES, or HOURS). *Required if limit is set.
  • limiter.period - How often the limit is reset (HOUR, DAY, WEEK, MONTH) *Required if limit is set.
    • HOUR is reset at X:00:00, DAY at local midnight, WEEK on Monday, and MONTH on the 1st day

Sensor

  • sensor.type - Optionally attach a sensor that mirrors the state of the parent accessory
  • sensor.timerControlled - If true, sensor will be activated if accessory is reset by timer but not if it is reset manually

Valid values for sensor are:

  • CarbonDioxideSensor
  • CarbonMonoxideSensor
  • ContactSensor
  • LeakSensor
  • MotionSensor
  • OccupancySensor
  • SmokeSensor

Commands

Execute arbitrary commands (e.g. curl) when the accessory changes state

  • onCommand - Arbitrary command to execute when lightbulb/outlet/switch/thermostat turns on
  • offCommand - Arbitrary command to execute when lightbulb/outlet/switch/thermostat turns off
  • lockCommand - Arbitrary command to execute when lock mechanism is locked
  • unlockCommand - Arbitrary command to execute when lock mechanism is unlocked
  • commandTemperature - Arbitrary command to execute when temperature changes

Defaults

  • temperatureUnits - Units to use for thermostats, either 'C' or 'F'
  • defaultOn — Initial value. Default ON = true, default OFF = false
  • defaultBrightness — If set, lightbulb will have additional dimmer settings with this default brightness percentage
  • defaultLockState - The initial value for the lock, "locked" or "unlocked"
  • defaultPosition — Initial position for the door/garage/window/blinds, "open" or "closed"
  • defaultThermostatState - The initial state for the thermostat, "auto", "heat", "cool", or "off"
  • defaultTemperature - The default temperature for the thermostat in temperatureUnits defined above

Options

  • enableWebook - Turn on webhooks for this accessory. See Webhooks section below for details.
  • resetOnRestart _ If true, accessory will return to default state when Homebridge restarts
  • disableLogging — If true, state changes will not be logged

Webhooks

You can optionally enable webhooks on an accessory by choosing Enable Webhooks in the config UI or setting enableWebhooks to true in the JSON config.

If at least one accessory has webhooks enabled, then Homebridge Dummy will start a webhook server on startup. The default port is 63743, e.g. http://localhost:63743/. To change the port, add webhookPort to the top level Homebridge Dummy config (see above).

Incoming requests must be valid JSON and include the id of the accessory, the desired command, and the value to set.

For example, to turn a switch on the JSON request should look like this:

{
    "id": "17a62a7b",
    "command": "On",
    "value": true
}

Here's how you would call it from the command line.

curl -X POST http://localhost:63743/ -H "Content-Type: application/json" -d '{"id": "17a62a7b", "command": "On", "value": true}

The accessory id can be found in the plugin JSON config.

Here are the possible values for command and their respective valid value

  • Brightness - number from 0-100
  • LockTargetState - 0 (UNSECURED) or 1 (SECURED)
  • On - true or false
  • TargetHeatingCoolingState - 0 (OFF), 1 (HEAT), 2 (COOL), 3 (AUTO)
  • TargetPosition - number from 0-100
  • TargetTemperature - number between 10°C and 38°C

For TargetTemperature you may optionally supply a unit (either 'F' or 'C') to allow you to pass in Fahrenheit or Celsius units.

{
    "id": "18a35b6c",
    "command": "TargetTemperature",
    "value": 72,
    "unit": "F"
}

Credits

@jotzet79 for German translations

@Silverdragon122 for Russian translations

@dcompane for Spanish translations

Keryan Belahcene for creating the Flume banner image which was adapted for use with this plugin

Schedule feature inspired by Homebridge Schedule by @kbrashears5

Sensor feature inspired by Homebridge-Delay-Switch by @nitaybz

Command feature inspired by homebridge-cmdtrigger by @hallos

Special thanks to @nfarina for creating the original version of this plugin and maintaining it for almost 10 (!!!) years

And to the amazing creators/contributors of Homebridge who made this plugin possible!