benlamonica/homebridge-rasppi-gpio-garagedoor

Homekit Controller in Home Assistant issue

coolgt opened this issue · 1 comments

I would like to get this plugin to work with Homekit Controller in HomeAssistant. However, it require unique serial number for each accessory.

The current set up for this plugin use the same serial number for all the accessories setup in the config file
.setCharacteristic(Characteristic.SerialNumber, "Version 1.0.0");

can you make the change to so that we use the accessory name as serial number
like this
.setCharacteristic(Characteristic.SerialNumber, "Garage Door 1");
.setCharacteristic(Characteristic.SerialNumber, "Garage Door 2");

this way it, if we have two garage doors and it has unique serial for each one

It is an easy update and fix. and it will benefit everyone who still using your plugin.