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 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-cmdswitch2-no-logs

v0.4.0

Published

CMD plugin for HomeBridge (API 2.0): https://github.com/nfarina/homebridge

Downloads

95

Readme

homebridge-cmdswitch2-no-logs

npm npm

Fork that prevents exceesive state logging, now updated to support Homebridge V2.0 This also includes a Config UI X configuration page.

CMD Plugin for HomeBridge (API 2.0)

Older version using API 1.0: homebridge-cmdswitch (deprecated)

Switching from homebridge-cmdswitch (API 1.0)

Users switching from homebridge-cmdswitch will need to remove their old config in config.json and use the new config. Hence, switch will show up as brand new device. This is due to the fact that API 2.0 only supports platform plugins and homebridge-cmdswitch was implemented as an accessory plugin. This means any configurations, alarms, scenes, etc to which the switch was associated will need to be updated with the new switch device.

What this plugin does

This plugin allows you to run Command Line Interface (CLI) commands via HomeKit. This means you can run a simple commands such as ping, shutdown, or wakeonlan just by telling Siri to do so. An example usage for this plugin would be to turn on your PS4 or HTPC, check if it’s on, and even shut it down when finished.

How this plugin works

  1. on_cmd: This is the command issued when the switch is turned ON.
  2. off_cmd: This is the command issued when the switch is turned OFF.
  3. state_cmd: This is the command issued when HomeBridge checks the state of the switch.
  4. If there is no error, HomeBridge is notified that the switch is ON.
  5. If there is an error, HomeBridge is notified that the switch is OFF.

Things to know about this plugin

This plugin can only run CLI commands the same as you typing them yourself. In order to test if your on_cmd, off_cmd, or state_cmd are valid commands you need to run them from your CLI. Please keep in mind you will want to run these commands from the same user that runs (or owns) the HomeBridge service if different than your root user.

Installation

  1. Install homebridge using npm install -g homebridge.
  2. Install this plugin using npm install -g homebridge-cmdswitch2-no-logs.
  3. Update your configuration file. See configuration sample below.

Configuration

Edit your config.json accordingly. Configuration sample:

"platforms": [{
   "platform": "cmdSwitch2"
}]

Advanced Configuration (Optional)

This step is not required. HomeBridge with API 2.0 can handle configurations in the HomeKit app.

"platforms": [{
   "platform": "cmdSwitch2",
   "name": "CMD Switch",
   "switches": [{
       "name" : "HTPC",
       "on_cmd": "wakeonlan XX:XX:XX:XX:XX:XX",
       "off_cmd": "net rpc shutdown -I XXX.XXX.XXX.XXX -U user%password",
       "state_cmd": "ping -c 2 -W 1 XXX.XXX.XXX.XXX | grep -i '2 received'"
   }, {
       "name" : "Playstation 4",
       "on_cmd": "ps4-waker",
       "off_cmd": "ps4-waker standby",
       "state_cmd": "ps4-waker search | grep -i '200 Ok'",
       "polling": true,
       "interval": 5,
       "timeout": 2000,
       "manufacturer": "Sony Corporation",
       "model": "CUH-1001A",
       "serial": "XXXXXXXXXXX"
   }]
}]

| Fields | Description | Required | |--------------------|-------------------------------------------------------|----------| | platform | Must always be cmdSwitch2. | Yes | | name | For logging purposes. | No | | switches | Array of switch config (multiple switches supported). | Yes | | |- name* | Name of your device. | Yes | | |- on_cmd | Command to turn on your device. | No | | |- off_cmd | Command to turn off your device. | No | | |- state_cmd | Command to detect an ON state of your device. | No | | |- polling | State polling (Default false). | No | | |- interval | Polling interval in s (Default 1s). | No | | |- timeout** | Commands execution timeout in s (Default 1s). | No | | |- manufacturer | Manufacturer of your device. | No | | |- model | Model of your device. | No | | |- serial | Serial number of your device. | No |

*Changing the switch name in config.json will create a new switch instead of renaming the existing one in HomeKit. It's strongly recommended that you rename the switch using a HomeKit app only.

**Command execution is assumed 'Successful' if timeout occures.