benlamonica / homebridge-rasppi-gpio-garagedoor

Plugin for HomeBridge for a Raspberry Pi GPIO Garage Door Opener
63 stars 40 forks source link

Homekit Controller in Home Assistant issue #54

Open coolgt opened 2 years ago

coolgt commented 2 years ago

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.

benlamonica commented 2 years ago

Sure, I can take a look.

-Ben L

On Dec 19, 2021, at 8:18 PM, coolgt @.***> wrote:

 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.

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you are subscribed to this thread.