homebridge-lutron-homeworks
v0.1.10
Published
Homebridge plugin for the circa 2005 Lutron Homeworks System
Downloads
37
Maintainers
Readme
homebridge-lutron-homeworks
Lutron Homeworks plug-in for Homebridge using RS232.
Got an old school Lutron Homeworks system? Don't want to pay $10,000+ to retrofit all of your dimmers for HomeKit? Then you're at the right place.
Requirements
- Check environment compatiblity for Node SerialPort.
- Connect host system to the Lutron Homeworks board using RS232.
- Check if you can successfully log into the system prior to installing the plugin (optional but recommended)
- See here for instructions on how to do this using minicom
Installation
- Install homebridge using:
npm install -g homebridge
- Install this plug-in using:
npm install -g homebridge-lutron-homeworks
- Edit the plugin's settings in homebridge-config-ui-x in or update your configuration file manually. See example
config.json
snippet below.
This plugin was tested in docker using oznu's docker-homebridge image running on an Ubuntu 20.04 host.
Configuration
Minimum configuration sample (edit ~/.homebridge/config.json
):
"platforms": [
{
"name": "Lutron Homeworks",
"serialPath": "/dev/ttyUSB0",
"platform": "LutronHomeworks"
}
],
Required fields if your Lutron Homeworks system requires authentication:
"loginRequired"
: Must be"true"
"password"
: Lutron Homeworks system password. (Default isjetski
...don't ask why)
Optional fields:
"baudRate"
:some number
// optionally sets the baud rate of the serial port (defaults to 115200)"defaultFadeTime"
:some number
// optional fade time in seconds to use for all discovered devices (defaults to 1 if omitted)"device"
:[{ "address": "01:04:01:01:01", "name": "Formal Living", "fadeTime": 3 },...]
// optional list of devices with their name and specific fade times. This fade time overwrites defaultFadeTime."ignoreDevices"
:["01:04:01:01:02",...]
//optional list of devices to ignore and not add into HomeKit
Sample configuration with optional values (edit ~/.homebridge/config.json
):
"platforms": [
{
"name": "Lutron Homeworks",
"serialPath": "/dev/ttyUSB0",
"loginRequired": true,
"password": "jetski",
"defaultFadeTime": 1,
"devices": [
{
"address": "01:04:01:01:01",
"name": "Formal Living"
},
{
"address": "01:04:01:01:02",
"name": "Powder Hallway",
"fadeTime": 5
},
{
"address": "01:04:01:01:04",
"name": "Family Room Lights"
}
],
"ignoreDevices": [
"01:04:01:01:05",
"01:04:01:01:06"
]
"platform": "LutronHomeworks"
}
],
What the heck are "Addresses"?
Addresses are literally the address for a dimmer or switch. Don't worry if you don't know the addresses of the devices on your Lutron Homework network. This plugin will add all the discovered devices using the address as the device's name in HomeKit. You can then edit config.json
as needed.
What does this plugin do?
- Plugin sends the
LOGIN, <password>
ifloginRequired
istrue
- Plugin sends the
DLMON
command to Lutron Homeworks so that we can observe when a dimmer's state has been changed - Plugin sends the
RDL, [<address>]
command for every single possible address value. This command will return back a dimmer's current brightness level if a dimmer exists ataddress
. This accomplishes two things:- Discovers all the dimmers in the system
- Determines their current state
What kind of wizardry is this?
This isn't wizardry. Just taking advantage of Lutron HomeWorks RS232 protocol. You can read more about the protocol here.
Your code sucks
Well, yeah. This is my first homebridge plugin and first experience with TypeScript. Be nice.