Homekit Controller in Home Assistant issue
coolgt opened this issue · 1 comments
coolgt commented
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
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.