homebridge-hyperion icon indicating copy to clipboard operation
homebridge-hyperion copied to clipboard

Multiple instances not working

Open YellowNest opened this issue 1 year ago • 1 comments

I have two Hyperion instances up an running. This plugin only allow configuration for one device. Errors will occur because the plugin wont accept another accessory.

YellowNest avatar Mar 13 '23 10:03 YellowNest

what errors? Have you tried to specify 2 accessory blocks? Make sure the name, ambilight_name, and port are different on each block

   "accessories": [
       {
           "accessory": "Hyperion",
           "name": "Instance1",
           "ambilight_name": "Ambilight1",
           "priority": "100",
           "host": "host1",
           "port": "19444"
       },
       {
           "accessory": "Hyperion",
           "name": "Instance2",
           "ambilight_name": "Ambilight2",
           "priority": "100",
           "host": "host1",
           "port": "19445"
       }

   ]

Danimal4326 avatar Mar 13 '23 14:03 Danimal4326