
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@felixdulfer/homebridge-plugin-ir-blaster
Advanced tools
Homebridge plug-in that transmits IR signals through a custom IR board.
 
Sends signals to a modified Tyua IR Blaster, running a custom firmware.
Currently supports a Lightbulb and a Fan with 3 speeds. The goal for this project is to support a wider range of Homebridge/Homekit supported devices, as well as some kind of mapping to generic stateful/stateless buttons. For example; a generic button to turn on/off a receiver (which Homekit has no support for).
This repo is based on Homebridge Plugin Template.
{
  "platform": "IRBlasterHomebridgePlugin",
  "name": "IRBlasterHomebridgePlugin",
  "blasters": [
    {
      "displayName": "Master Bedroom",
      "uniqueId": "master-bedroom-blaster-prod",
      "address": "192.168.226.121"
    }
  ],
  "accessoires": [
    {
      "displayName": "Master Bedroom Fan Light",
      "uniqueId": "master-bedroom-fan-light",
      "type": "Lightbulb",
      "blaster": {
        "uniqueId": "master-bedroom-blaster-prod"
      },
      "commands": {
        "on": "1214, 414, 1204, ...",
        "off": "1214, 420, 1194, ..."
      }
    },
    {
      "displayName": "Master Bedroom Fan Speed",
      "uniqueId": "master-bedroom-fan-speed",
      "type": "Fan",
      "blaster": {
        "uniqueId": "master-bedroom-blaster-prod"
      },
      "commands": {
        "off": "1240, 428, 1182, ...",
        "speed1": "1250, 446, 1158, ...",
        "speed2": "1244, 462, 1150, ...",
        "speed3": "1248, 386, 1192, ..."
      }
    }
  ]
}
To develop Homebridge plugins you must have Node.js 12 or later installed, and a modern code editor such as VS Code. This plugin template uses TypeScript to make development easier and comes with pre-configured settings for VS Code and ESLint. If you are using VS Code install these extensions:
Using a terminal, navigate to the project folder and run this command to install the development dependencies:
npm install
TypeScript needs to be compiled into JavaScript before it can run. The following command will compile the contents of your src directory and put the resulting code into the dist folder.
npm run build
Run this command so your global install of Homebridge can discover the plugin in your development environment:
npm link
You can now start Homebridge, use the -D flag so you can see debug log messages in your plugin:
homebridge -D
If you want to have your code compile automatically as you make changes, and restart Homebridge automatically between changes you can run:
npm run watch
This will launch an instance of Homebridge in debug mode which will restart every time you make a change to the source code. It will load the config stored in the default location under ~/.homebridge. You may need to stop other running instances of Homebridge while using this command to prevent conflicts. You can adjust the Homebridge startup command in the nodemon.json file.
You can now start customising the plugin template to suit your requirements.
src/platform.ts - Device setup and discovery.src/platformLightbulb.ts - Lightbulb Accessory logic.src/platformFan.ts - Fan Accessory logic.config.schema.json - Configuration schema for Homebridge UI. See the Plugin Config Schema Documentation.More documentation on Homebridge API: https://developers.homebridge.io.
The easiest way to publish is through np:
npx -y np
You can publish beta versions of your plugin for other users to test before you release it to everyone.
npx -y np --tag=beta
Users can then install the beta version by appending @beta to the install command, for example:
sudo npm install -g homebridge-plugin-ir-blaster@beta
ping dependency for a HEAD request.FAQs
Homebridge plug-in that transmits IR signals through a custom IR board.
We found that @felixdulfer/homebridge-plugin-ir-blaster demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.