minamoanes / homebridge-homekit-control

Control native Apple HomeKit accessories via Homebridge
Apache License 2.0
51 stars 2 forks source link
homebridge homebridge-plugin homekit homekit-bridge homekit-control homekit-controller homekitcontrol
# Homebridge HomeKit Control [![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins) [![npm](https://badgen.net/npm/v/homebridge-homekit-control)](https://www.npmjs.com/package/homebridge-homekit-control) [![downloads](https://badgen.net/npm/dt/homebridge-homekit-control)](https://www.npmjs.com/package/homebridge-homekit-control) [![donate](https://badgen.net/badge/PayPal/donate/003087?icon=https://simpleicons.now.sh/paypal/fff)](https://paypal.me/MinaMoanes)

HomeKit Control lets you control Apple HomeKit Exclusive accessories through Homebridge, This is especially useful to gain all the benefits of Homebridge alongside controlling them using other services and plugins through Homebridge, such as:

Supported Devices

The Plugin currently supports the following Services provided by WLAN-based HomeKit enabled devices:

Please note that BLE is currently not supported, as it seems to be unstable when multiple BLE-enabled Plugins are installed. All supported sensors on any configured device are automatically discovered and added when Homebridge starts up.

Install

sudo npm i -g homebridge-homekit-control

Pairing Devices

To pair your devices with Homebridge HomeKit Control, follow these steps:

  1. Discover Devices:

    homekitPair
    • You could also: homekitPair [network] [interface], for example: homekitPair -i wlan0
  2. Select the device you want to pair, and enter the pairing code (including -, example 123-45-678).

  3. Enter a filename to save pairing information in JSON format.

  4. In the JSON file, you'll find the following information:

    {
        "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": [...]
        }
    }
  5. Note down the "id", "name", "address", "port" and "pairingData" from the JSON file.

  6. Go to Plugins page and Click on the SETTINGS button under Homebridge Homekit Control and fille out the information we noted from the JSON file in the previous steps

    • For further information, please refer to the Config section for details.

Config

This Plugin supports the Configuration Interface in Homebridge UI (homebridge-config-ui-x). Simply add a new Device and paste the values you obtained above.

Here are some additional configuration parameters, not obtained by the Device Pairing:

Example

{
    "platforms": [
        {
            "platform": "HomekitControl",
            "services": [
                {
                    "id": "device id",
                    "name": "device name",
                    "address": "device ip",
                    "port": "device port",
                    "enableHistory": false,
                    "pairingData": {
                        "AccessoryPairingID": "xxx",
                        "AccessoryLTPK": "xxx",
                        "iOSDevicePairingID": "xxx",
                        "iOSDeviceLTSK": "xxx",
                        "iOSDeviceLTPK": "xxx"
                    }
                }
            ]
        }
    ]
}

How to fix Known Errors:

if you get the error M2: Error: 6:

  1. Add the device to your Homekit
  2. Once the device is added and connected to your Wifi network
  3. Remove device from your Home
  4. Device should still be connected to your Wifi (check it from your router's connected clients)
  5. Run the homekitPair command in your Homebridge and enter the pin
  6. And voila, you get the JSON

Tested Accesories

(!!! Use at your own risk !!!)

Please let me know if you use this plugin and got it to work with a new HomeKit-Accesory that is not listed above

Building for developers

The project was converted to the build system from https://github.com/homebridge/homebridge-plugin-template. Visual Studio Code is set up to lint on save.

Using npm run dev will launch the develop environment, where your code is automatically compiled on save and the local homebridge server is automatically restarted.

The command npm rund build will trigger the compilation of your project manually.