Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martinpham/homebridge-homekit-controller
Control Apple's HomeKit devices via Homebridge
https://github.com/martinpham/homebridge-homekit-controller
Last synced: about 1 month ago
JSON representation
Control Apple's HomeKit devices via Homebridge
- Host: GitHub
- URL: https://github.com/martinpham/homebridge-homekit-controller
- Owner: MartinPham
- Created: 2020-02-15T19:07:36.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T01:55:39.000Z (almost 2 years ago)
- Last Synced: 2024-11-13T12:32:06.867Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 110 KB
- Stars: 30
- Watchers: 6
- Forks: 4
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Install
===
```
npm i -g homebridge-homekit-controller```
Pair devices
===
- Discover devices
```
homekit [network interface]
```example
```
homekit
```or
```
homekit wlan0
```- Select device, and enter code to pair (including `-`, example `123-45-678`)
- Enter filename to save pairing's informations JSON
- Inside the JSON file, you can find```
{
"service": {
"id": "device id",
"name": "device name",
"address": "device ip",
"port": device-port
},
"pairingData": {
"AccessoryPairingID": "xxx",
"AccessoryLTPK": "xxx",
"iOSDevicePairingID": "xxx",
"iOSDeviceLTSK": "xxx",
"iOSDeviceLTPK": "xxx"
},
"accessories": {
"accessories": [...]
}
}
```
- Note down the `"service"`, `"pairingData"`, and `"aid"` & `"iid"` under `"accessories"`.
- Get all the UUID here [https://gist.github.com/mplewis/def678dc4b6e63a86905](https://gist.github.com/mplewis/def678dc4b6e63a86905)
- Currently, I support `Switch`, `Motion sensor`, `Temperature sensor` and `Humidity sensor`. I will try to add more services!Config
===
```
{
"platforms": [
{
"platform": "HomeKitController",
"services": [
{
"id": "device id",
"name": "device name",
"address": "device ip",
"port": "device port",
"pairingData": {
"AccessoryPairingID": "xxx",
"AccessoryLTPK": "xxx",
"iOSDevicePairingID": "xxx",
"iOSDeviceLTSK": "xxx",
"iOSDeviceLTPK": "xxx"
},
"accessories": [
{
"aid": "characteristic aid",
"iid": "characteristic iid",
"type" : "service type (eg. 00000082-0000-1000-8000-0026BB765291)",
"name": "Humidity Sensor 1"
}
]
}
]
}
]
}
```