homebridge-tasmota-lock
v1.0.3
Published
This is a plugin for homebridge which makes it lock device with Tasmota firmware through HTTP only
Readme
Installation
- Install homebridge
- Install this plugin:
npm install -g homebridge-tasmota-lock - Update your
config.jsonfile
Configuration
"accessories": [
{
"accessory": "TasmotaLock",
"name": "Lock",
"hostname": "The hostname of the tasmota device"
}
]Core
| Key | Description | Default |
| --- | --- | --- |
| accessory | Must be TasmotaLock | N/A |
| name | Name to appear in the Home app | N/A |
| hostname | hostname of your device | N/A |
Optional fields
| Key | Description | Default |
| --- | --- | --- |
| autoLock (optional) | Whether your lock should re-lock after being opened | false |
| autoLockDelay (optional) | Time (in seconds) until your lock will auto lock if enabled | 10 |
| pollInterval | Time (in seconds) between device polls (if polling is enabled) | 120 |
Additional options
| Key | Description | Default |
| --- | --- | --- |
| timeout (optional) | Time (in milliseconds) until the accessory will be marked as Not Responding if it is unreachable | 3000 |
| username (optional) | Username if HTTP authentication is enabled | N/A |
| password (optional) | Password if HTTP authentication is enabled | N/A |
| model (optional) | Appears under the Model field for the accessory | plugin |
| serial (optional) | Appears under the Serial field for the accessory | apiroute |
| manufacturer (optional) | Appears under the Manufacturer field for the accessory | author |
| firmware (optional) | Appears under the Firmware field for the accessory | version |
