Skip to main content

IoT Lab - Homebridge Setup

Introducing Homebridge, an Apple Homekit Gateway for simulating HomeKit compatible device. 

In general, if you want a remotely-controllable device, you need an extraordinary price device that support Apple HomeKit and Google Home platform. The device need to be manufactored to support Wi-Fi or BLE (Bluetooth Low Energy) to make it able to connect to the internet and able to recieve the command from the IoT platform

Screenshot 2023-05-03 at 3.28.52 PM.png

s

A smart device starting from $50 to $250 🧐

That's why we need Homebridge. A 3rd party gateway for acting like a virtual smart device, also with Apple HomeKit and Google Home support.

Setting up Homebridge

We're following the instruction for setting up Homebridge using Node.js here: https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-macOS / https://github.com/homebridge/homebridge/wiki/Install-Homebridge-on-Windows-10

Setup Homebridge

Before we start

As Homebridge use local network for communication with the accessibility. So our device need to join the same LAN. We have provided Wi-Fi network for this workshop as follows:

  • SSID: CSC217
  • Password: csc1212312121

Install Homebridge

You need Node.js and npm as the prerequisite for the Homebridge installation.

To install Homebridge with Web UI plugins, run the following command:

npm install -g --unsafe-perm homebridge homebridge-config-ui-x

Setup Homebridge configuration

Try create a new folder for Homebridge configuration, can be any folder on your drive.

Screenshot 2023-05-03 at 3.45.05 PM.png

Then, create a file named config.json with a default value like this:

{
	"bridge": {
		"name": "Thun's Homebridge Instance",
		"username": "CB:22:3D:xx:xx:xx",
		"port": xxxxx,
		"pin": "xxx-xx-xxx"
	},
	"accessories": [],
	"platforms": [
		{
			"name": "Config",
			"port": 80808080,
            "platform": "config"
		}
	]
}

As we're creating the FAKE HomeKit device, so we need a FAKE product information about it. So we need to randomize the MAC address (xx:xx:xx base16 charactors), port (any 5 digit numeric value), and pin (any 3-2-3 numeric value).

Start Homebridge instance

Open Terminal at the homebridge working directory. Then run the start command as follows:

homebridge -I -U .


# With UI
homebridge-config-ui-x -I -U .

# For uni. laptop (cr. neng & boss)
npx homebridge-config-ui-x -I -U .

This will run a Homebridge (as we have previously installed in the first step) with -I which means Insecure mode (Learn more: https://github.com/homebridge/homebridge-config-ui-x/wiki/Enabling-Accessory-Control) and -U . which means we're using . (current working directory) as the data folder.

Caution: Please don't use hb-service command as it going to create Homebridge as a system service which will automatically start every time your system starts. It's suitable for running in the server (or Raspberry Pi). But we're using homebridge just for once, so we have no need to make it automatically start and always run in the background.

Screenshot 2023-05-03 at 4.05.29 PM.png

After you properly start Homebridge, it should appear an QRCode like this. We're now ready to pair with HomeKit!

Using Homebridge UI

When you started your Homebridge instance, we can navigate to http://<your-ip>:8080 (nor recommend to use http://localhost:8000/) to see the configuration UI.

Open web console

For macOS, you can press Option while clicking at Wi-Fi button to see your IP address.

Screenshot 2023-05-03 at 4.35.05 PM.png

For Windows, you can go to Settings > Network & Internet > Wi-Fi > Click on connected Wi-Fi name to see the IP address

image.png

If you can open the Homebridge console, we're now good to go!

Screenshot 2023-05-03 at 4.32.05 PM.png

Setup webhook plugins

After you have setting your username / password for first time use. It's time to add some accessories to the system. Let's go to "Plugins" tab and search for "webhooks" and choose install from "@kellojo" author.

Screenshot 2023-05-03 at 4.40.39 PM.png

If the installation failed, we can manually install by using the command:

sudo npm install -g @kellojo/homebridge-http-webhooks

When you successfully installed, we need to restart Homebridge server once, and then go back to UI to see configure the plugins.

Then go to plugins settings here:

Screenshot 2023-05-03 at 5.15.02 PM.png

Setting the webhook port to any port you want to bind for the API access, it can be any usable port, for me, I choose 51900 for example.

Screenshot 2023-05-03 at 5.17.04 PM.png

Then, let's add some sensor to the bridge. I'll setup temperature sensor with the id "lx_temp1". The ID will be further used in when we use Arduino controller to call the API.

Screenshot 2023-05-03 at 5.22.05 PM.png

After sensor was added try restart Homebridge one more time. And then, come back to the accessory tab.

Screenshot 2023-05-03 at 5.28.36 PM.png

You should now see the temperature sensor appeared.

Call status update API

After we have the accessory setup completely. we are going to use REST API to change the status of our temperature sensor.


Pairing with device

For Android user, please skip these steps to Using Homebridge GSH part.

For iOS user, we can use Home app (preinstalled with OS) for pairing with Homebridge server.

  1. Open Home app and setup for first time use.
  2. After you have setup your home, you should see a HomeKit screen like this:

    IMG_0439A0810CFD-1.jpeg

  3. Tap on the + button at the top right of the screen, then choose "Add Accessory". You will see the QR Code scanner prompt to scan the QR Code from your Terminal
  4. If Home app can communicate with Homebridge, it will prompt uncertified accessory. Just click "Add Anyway" and follow the prompt.
    IMG_1093.PNG