For the complete documentation index, see llms.txt. This page is also available as Markdown.

11. Homebridge Integration

To control your devices using siri and the HomeKit API you will need:

  1. Install Homebridge in your Windows, Linux, Mac, or Raspberry

  2. Install the Plugin Homebridge Mqttthing

  3. Add a new device with the configuration shown below depending on the device type.

  4. Open your Home app in your iOS device and link it scanning the QR code from the administration portal of Homebridge.

  5. Rename your devices in the Home App.

  6. Done!

Device Configurations:

  1. Switch or Light (No Tasmota)

{
    "type": "switch",
    "name": "31141235efb12D367",      //YOUR DEVICE ID
    "url": "smartnest.cz",
    "username": "USERNAME",
    "password": "PASSWORD or API KEY",
    "topics": {
        "getOnline": "31141235efb12D367/report/connected",    //CHANGE HERE TOO
        "getOn": "31141235efb12D367/report/powerState",
        "setOn": "31141235efb12D367/directive/powerState"
    },
    "onlineValue": "Online",
    "offlineValue": "Offline",
    "onValue": "ON",
    "offValue": "OFF",
    "accessory": "mqttthing"
}

2. Switch or Light (Tasmota)

3. Door or Lock

4. Thermostat

5. Temperature Sensor

6. Fan

If you want to add another type of device you can check the Supported accessories page from homebridge-mqttthing

Last updated