- Set up Homebridge with one iOS device - https://github.com/nfarina/homebridge
- Modify AccessoryInfo.MAC_ADDRESS.json to remove the paired device (where MAC_ADDRESS is some string) - File should be in
~/.homebridge/persist/
{
"displayName":"Homebridge",
"category":2,
"pincode":"your pw",
"signSk":"a long string",
"signPk":"a long string,
#### REMOVE BELOW THIS LINE
"pairedClients":{
"a long string":"a long string"
},
#### REMOVE ABOVE THIS LINE
"configVersion":4,
"configHash":"a long string",
"setupID":"a short string",
"relayEnabled":false,
"relayState":2,
"relayAccessoryID":"",
"relayAdminID":"",
"relayPairedControllers":{},
"accessoryBagURL":""
}
- Pair the second iOS device
- Modify the Accessories JSON file to include both clients:
{
"displayName":"Homebridge",
"category":2,
"pincode":"your pw",
"signSk":"a long string",
"signPk":"a long string,
"pairedClients":{
"a long string":"a long string"
,"a long string":"a long string"
},
"configVersion":4,
"configHash":"a long string",
"setupID":"a short string",
"relayEnabled":false,
"relayState":2,
"relayAccessoryID":"",
"relayAdminID":"",
"relayPairedControllers":{},
"accessoryBagURL":""
}