1.0.1 • Published 2 years ago

@rsporny/homebridge-web-switch v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

homebridge-web-switch

npm npm

Original project and motivation

This project has been forked from phenotypic. Motivation: added new field switchOnValue in which you can specify different number instead of default 1. I need this to set special mode for my Thessla Green recuperator, e.g. airing, open window, which can have different values than 1. This way I can expose only one endpoint via MODBUS protocol and set everything in switch config.

Description

This homebridge plugin exposes a web-based switch to Apple's HomeKit. Using simple HTTP requests, the plugin allows you to turn on/off the switch.

Find script samples for the switch controller in the examples folder.

Installation

  1. Install homebridge
  2. Install this plugin: npm install -g homebridge-web-switch
  3. Update your config.json file

Configuration

"accessories": [
     {
       "accessory": "WebSwitchCustomValue",
       "name": "Switch",
       "apiroute": "http://myurl.com"
     }
]

Core

KeyDescriptionDefault
accessoryMust be WebSwitchCustomValueN/A
nameName to appear in the Home appN/A
apirouteRoot URL of your deviceN/A

Additional options

KeyDescriptionDefault
pollIntervalTime (in seconds) between device polls300
listenerWhether to start a listener to get real-time changes from the devicefalse
timeoutTime (in milliseconds) until the accessory will be marked as Not Responding if it is unreachable3000
portPort for your HTTP listener (if enabled)2000
http_methodHTTP method used to communicate with the deviceGET
usernameUsername if HTTP authentication is enabledN/A
passwordPassword if HTTP authentication is enabledN/A
modelAppears under the Model field for the accessoryplugin
serialAppears under the Serial field for the accessoryapiroute
manufacturerAppears under the Manufacturer field for the accessoryauthor
firmwareAppears under the Firmware field for the accessoryversion
switchOnValueOverride default switch on value1

API Interfacing

Your API should be able to:

  1. Return JSON information when it receives /status:
{
    "currentState": INT_VALUE
}
  1. Set the state when it receives:
/setState?value=INT_VALUE

Optional (if listener is enabled)

  1. Update state following a manual override by messaging the listen server:
/state?value=INT_VALUE