Giter Site home page Giter Site logo

nosrac / homebridge-cmdswitch2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from luisiam/homebridge-cmdswitch2

0.0 1.0 0.0 29 KB

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

License: Apache License 2.0

JavaScript 100.00%

homebridge-cmdswitch2's Introduction

homebridge-cmdswitch2 npm version

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.
  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",
   "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 '200Ok'",
       "manufacturer": "Sony Corporation",
       "model": "CUH-1001A",
       "serial": "XXXXXXXXXXX"
   }]
}]
Fields Description Required
platform Must always be cmdSwitch2. Yes
name* The name of your device. Yes
on_cmd The command to turn on your device. No
off_cmd The command to turn off your device. No
state_cmd The command to detect an ON state of your device. No
manufacturer The manufacturer of your device. No
model The model of your device. No
serial The serial number of your device. No
* Changing the 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.

homebridge-cmdswitch2's People

Contributors

luisiam avatar nosrac avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.