1.0.0 • Published 5 years ago
homebridge-homekit-rgb-bulb v1.0.0
homebridge-http-rgb-bulb
Supports HTTP/HTTPS devices on Homebridge Platform.
Installation
- Follow the instruction in homebridge for the homebridge server installation.
Configuration
Example:
{
"accessory": "HttpRGB",
"name": "RGB Bulb",
"set_url": "http://192.168.1.100/rgb?color=0x%s",
"get_url": "http://192.168.1.100/rgb?format=hex",
"http_method": "GET"
}The mandatory options are:
nameAccessory name.set_urlEndpoint to call with the requested color. The module replaces the '%s' characters with the hexadecimal code value.get_urlEndpoint to request the current state. The response must be plain text with the hexadecimal color code (without any simbol like '0x' or '#' at the begining).
The other available options are:
manufacterManufacter name to be displayed.modelModel name to be displayed.serialSerial number to be displayed.http_methodHttp metod that will be used to call theurlwhen the state is requested. Default is 'GET' (check request module to get the available options).timeoutMiliseconds to wait for the accessory response before send an error. Default is '5000 ms'.
1.0.0
5 years ago