No Device/Switches available in HomeApp?
drheck opened this issue · 8 comments
Hi,
i have now connection and i have configured one device and some switches.
After Reboot homebridge there are no elements visible and in the logfile is no error, only this:
Logfile:
[2020-10-23 12:01:54] [DenonAVR] ------------------------------
[2020-10-23 12:01:54] [DenonAVR] Receiver discovered in network:
[2020-10-23 12:01:54] [DenonAVR] IP Address: 192.168.113.33
[2020-10-23 12:01:54] [DenonAVR] Port: 8080
[2020-10-23 12:01:54] [DenonAVR] Model: Denon AVR-X2700H
[2020-10-23 12:01:54] [DenonAVR] Serialnumber: DBBZ092008037
[2020-10-23 12:01:54] [DenonAVR] Firmware: 1.562.281
[2020-10-23 12:01:54] [DenonAVR] ------------------------------
[2020-10-23 12:01:55] DrDenon BB16 is running on port 36861.
[2020-10-23 12:01:55] Please add [DrDenon BB16] manually in Home app. Setup Code: 031-45-154
Any idea?
Thank you,
Peter
Config:
{
"platform": "DenonAVR",
"pollInterval": 3,
"devices": [
{
"name": "DrDenon",
"ip": "192.168.113.33",
"switchInfoMenu": true,
"defaultInputID": "SAT/CBL",
"zone": 1,
"port": 8080,
"inputs": [
{
"inputID": "MPLAY",
"name": "Apple TV",
"defaultVolume": 32
},
{
"inputID": "IRADIO",
"name": "Radio"
},
{
"inputID": "SAT/CBL",
"name": "VU+"
}
],
"switches": [
{
"name": "AVR on Apple TV",
"ip": "192.168.113.33",
"port": 8080,
"inputID": "MPLAY",
"pollAllInput": false
},
{
"name": "AVR on iRadio",
"ip": "192.168.113.33",
"port": 8080,
"inputID": "IRADIO",
"defaultVolume": 35
},
{
"name": "AVR Zone 2",
"ip": "192.168.113.33",
"port": 8080,
"zone": 2,
"inputID": "TUNER"
}
]
}
]
},
Hi Peter,
You'll have to add the device manually again as a new accessory in the Home app. It should show up and you can add it with the setup code. The switches should be available. Not sure why this is not the case.
I noticed that you have the switches inside the devices, this should be outside. It should be:
{
"platform": "DenonAVR",
"pollInterval": 3,
"devices": [{
"name": "DrDenon",
"ip": "192.168.113.33",
"switchInfoMenu": true,
"defaultInputID": "SAT/CBL",
"zone": 1,
"port": 8080,
"inputs": [{
"inputID": "MPLAY",
"name": "Apple TV",
"defaultVolume": 32
},
{
"inputID": "IRADIO",
"name": "Radio"
},
{
"inputID": "SAT/CBL",
"name": "VU+"
}
]
}],
"switches": [{
"name": "AVR on Apple TV",
"ip": "192.168.113.33",
"port": 8080,
"inputID": "MPLAY",
"pollAllInput": false
},
{
"name": "AVR on iRadio",
"ip": "192.168.113.33",
"port": 8080,
"inputID": "IRADIO",
"defaultVolume": 35
},
{
"name": "AVR Zone 2",
"ip": "192.168.113.33",
"port": 8080,
"zone": 2,
"inputID": "TUNER"
}
]
}
Hi Martvvliet,
thank you very mutch. Now it works :-).
But one further question: My use-case is to start Zone2 with input from my Favorite 1 or 2!
Is this possible? If yes how?
In the possible inputs there are the favorites, but i can not select a single favorite.
Thank you,
Peter
Hi Peter, good to hear it's working now. I'm not sure what you mean with Favorite 1 or 2? Do you mean channels from the HEOS app or something from the Apple home app?
The buttons are not related to this app, But i might be able to add some options to control the heus functionality in this plugin. Thanks for the input :)
Okay. I am waiting for this feature :-)
Hi Martvvliet,
thank you very mutch. Now it works :-).
But one further question: My use-case is to start Zone2 with input from my Favorite 1 or 2!
Is this possible? If yes how?
In the possible inputs there are the favorites, but i can not select a single favorite.
Thank you,
Peter
Hi , Could you explain how did you manage to add it in HomeKit ?