https://github.com/philipkocanda/homebridge-generic-lock
Generic Lock Plugin for Homebridge
https://github.com/philipkocanda/homebridge-generic-lock
homebridge homebridge-plugin homekit iot lock
Last synced: about 1 year ago
JSON representation
Generic Lock Plugin for Homebridge
- Host: GitHub
- URL: https://github.com/philipkocanda/homebridge-generic-lock
- Owner: philipkocanda
- Created: 2017-09-16T15:40:19.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-11T06:41:24.000Z (about 7 years ago)
- Last Synced: 2025-04-12T09:11:35.065Z (about 1 year ago)
- Topics: homebridge, homebridge-plugin, homekit, iot, lock
- Language: JavaScript
- Size: 19.5 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Generic Lock Plugin for Homebridge
This is a fork from philipkocandas Homebridge Plugin.
I added HTTPS Support, Basic HTTP Authentication and updated the Readme.
This one is for the lock mechanism at my apartment, which only unlocks briefly to let someone in, then locks again.
In your Homebridge config.json, add this to the "accessories" section:
```
"accessories": [
{
"accessory": "GenericLock",
"name": "Front Door",
"postUrl": "https://your.device:3000/open",
"key": "/location/to/key.pem",
"cert": "/location/to/cert.pem",
"passphrase": "supersecret",
"username": "John",
"password": "supersecret"
}
]
```
# Changelog
## 0.0.26
- HTTPS Support (@bushco)