Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 18 days 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-11T06:41:24.000Z (over 5 years ago)
- Last Synced: 2024-04-25T18:00:33.825Z (7 months ago)
- Topics: homebridge, homebridge-plugin, homekit, iot, lock
- Language: JavaScript
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- 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)