How to I get the address of the thermostat on macOS
patricks opened this issue · 6 comments
patricks commented
Hi,
I have setup the homebridge plugin, but I don't know how to get the address of the thermostat? Is there any macOS/iOS tool to figure this out?
Btw. I have homebridge running on a macOS machine.
aleksandrsivanovs commented
patricks commented
aleksandrsivanovs commented
can you try to pair to the device first (through the same menu)?
patricks commented
I was not able to connect to the thermostat, but I use a machine with El Captain, there I could figure out the address.
maxnowack commented
I couldn't find a comfortable way. But I'll write a small Node.js script for this.
maxnowack commented
Here's a simple script, to get the device information:
/* usage:
npm install eq3ble
node thisfile.js */
var EQ3BLE = require('eq3ble').default;
EQ3BLE.discover(function (device) { console.log(device) });