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

v1.0.7

Published

Homebridge plugin to control Be Wave virtual devices via TCP triggers

Downloads

779

Readme

Homebridge Be Wave

Homebridge plugin to control Be Wave virtual devices using TCP trigger messages.

This plugin allows you to trigger Be Wave zones, outputs, or virtual devices from Apple HomeKit.


Features

  • Listen to TCP commands send by Be Wave upon switching virtual output
  • Send TCP commands from HomeKit to Be Wave with CommandOn message
  • Support for multiple devices
  • Works with virtual zones and outputs
  • Real-time feedback via incoming TCP messages
  • Momentary / trigger-style behavior

Installation

npm install -g homebridge-bewave

Configuration

Add this to your Homebridge config.json:

{
  "platform": "BeWave",
  "name": "Be Wave",
  "host": "192.168.10.10",
  "devices": [
    {
      "id": 1,
      "name": "Virtual Device 1",
      "commandOn": "trigger_zone_1",
      "onMessage": "switch_on_1",
      "offMessage": "switch_off_1"
    },
    {
      "id": 2,
      "name": "Virtual Device 2",
      "commandOn": "trigger_zone_2",
      "onMessage": "switch_on_2",
      "offMessage": "switch_off_2"
    }
  ]
}

Configuration Options

Platform

| Key | Description | Required | | ------- | -------------------------------- | -------- | | host | IP address of the Be Wave system | Yes | | devices | List of devices | Yes |


Device

| Key | Description | Required | | ---------- | ------------------------------------------- | -------- | | id | Unique device ID | Yes | | name | Name shown in HomeKit | Yes | | commandOn | TCP message sent when triggered | Yes | | onMessage | Message received from Be Wave for ON state | No | | offMessage | Message received from Be Wave for OFF state | No |


Behavior

This plugin uses trigger-based switching:

  • Every toggle in HomeKit sends a commandOn message
  • commandOn is used to trigger a zone. Standard time 400ms
  • Switch back controlled in Be Wave
  • Be Wave controls the actual state
  • If feedback is configured, HomeKit state is updated based on incoming messages

This makes the plugin ideal for:

  • Alarm zones
  • Virtual inputs
  • Scene triggers
  • Automation triggers

How It Works

HomeKit → Satel Be Wave

  • Create a virtual device in Be Wave and configure according to manual
  • When a switch is toggled (ON or OFF)
  • The plugin sends the commandOn TCP message
  • Create a routine in Be Wave to change the output state
  • With every change of the switch from Homebridge the Be Wave output will change state

Be Wave → Homebridge

  • Be Wave sends a TCP message upon change of output
  • Plugin matches this with onMessage / offMessage
  • HomeKit state is updated accordingly

Notes

  • Each device must have a unique id
  • commandOn is required
  • If no feedback messages are configured, the switch behaves as a momentary trigger
  • Make sure Be Wave is configured to send TCP messages back

Troubleshooting

Device does not respond

  • Check IP address (host)
  • Verify Be Wave TCP configuration
  • Check Homebridge logs

Switch state incorrect

  • Verify onMessage and offMessage
  • Ensure Be Wave sends the exact same messages

Nothing happens on toggle

  • Check logs for "trigger verstuurd"
  • Verify TCP connectivity
  • Be Wave listens on Port 5000
  • Confirm Be Wave is able to listen to this port
  • Check if the port is not used by others on your server

Development

npm install
npm run build

License

MIT License


Disclaimer

This plugin is not officially affiliated with Be Wave. Use at your own risk.