homebridge-broadlink-s1c
v3.0.3
Published
Homebridge plugin for Broadlink S1C - SmartOne Alarm Kit
Downloads
20
Maintainers
Readme
homebridge-broadlink-s1c
Broadlink S1C plugin for Homebridge. This plugins only reads the status of the current sensors. no ability to control the alarm state (yet).
Inspired and forked from homebridge-broadlink-platform By @smka
New version 3.0, should solve the digital envelope routines:EVP_DecryptFinal
error and improve stability and response
Creating and maintaining Homebridge plugins consume a lot of time and effort, if you would like to share your appreciation, feel free to "Star" or donate.
Click here to review more of my plugins.
Installation
- Config your S1C device and sensors with default e-Control app (for the first time)
- Install homebridge using:
(sudo) npm install -g homebridge
- Install this plugin using:
(sudo) npm install -g homebridge-broadlink-s1c
- Update your configuration file. See example:
config-sample.json
. - Now you can read your window/door sensors status and control the host alarm states using homebridge, homekit and siri.
Config file Sample
"platforms": [
{
"platform": "broadlinkS1C",
"name": "S1C",
"ip": "10.0.0.X",
"stayMode": "disarm",
"awayMode": "full_arm",
"nightMode": "part_arm",
"alarmSound": true,
"notificationSound": false,
"motionTimeout": 30
}
],
Configuration
| Parameter | Description | Required | Default |
| -------------------------------- | ------------------------------------------------------------- |:--------:|:---------:|
| platform
| always "broadlinkS1C" | ✓ | - |
| name
| name of the Platform / Host | ✓ | - |
| ip
| The ip address of the device. (use either ip or mac address) | or mac | - |
| mac
| The mac address of the device. (use either ip or mac address) | or ip | - |
| stayMode
| "disarm" / "full_arm" / "part_arm" On HomeKit Stay | | "disarm" |
| awayMode
| "disarm" / "full_arm" / "part_arm" On HomeKit Away | | "full_arm"|
| nightMode
| "disarm" / "full_arm" / "part_arm" On HomeKit Night | | "part_arm"|
| alarmSound
| true / false - set the alarm sound when triggered | | true |
| useFanSpeed
| true / false - set the beep sound on sensors notification | | false |
| motionTimeout
| Time in seconds of which motion sensor can be retriggered** | | 30 |
** any vaue for the motionTimeout less than 30 seconds will be retriggered always since it's the minimum delay than can be set in the broadlink app, most recommeneded to set it for 30s delay instead of the default 6 minutes.