Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accessory will not add to HomeKit on iOS 18.2 #304

Open
ThomasKWood opened this issue Dec 31, 2024 · 8 comments
Open

Accessory will not add to HomeKit on iOS 18.2 #304

ThomasKWood opened this issue Dec 31, 2024 · 8 comments

Comments

@ThomasKWood
Copy link

I see this issue has been made multiple times now but they have all gone stale. I'm hoping that opening a new one will get this properly addressed.

I've followed the Wiki instructions on adding the Denon Receiver to HomeKit and I have had success in the past before updating to iOS 18.x.

However, now that I am on 18.2 the functionality of adding the receiver manually by selecting it from the More options list seems to no longer work.

I've tried the following:
adding with bridge mode off, using a config that I know worked before, restarting the homebridge host, and restarting the Receiver.

Config:
{
"devices": [
{
"name": "DENON",
"host": "10.0.0.2",
"port": 80,
"generation": 1,
"zoneControl": 0,
"getInputsFromDevice": true,
"getFavoritesFromDevice": true,
"getQuickSmartSelectFromDevice": true,
"inputsDisplayOrder": 0,
"buttons": [
{
"name": "PC",
"reference": "0SIGAME",
"displayType": 2
}
],
"buttonsZ2": [
{
"displayType": 0
}
],
"buttonsZ3": [
{
"displayType": 0
}
],
"sensorPower": false,
"sensorVolume": false,
"sensorMute": false,
"sensorInput": false,
"sensorSurrounds": [
{
"displayType": 0
}
],
"infoButtonCommand": "MNMEN ON",
"masterPower": false,
"masterMute": false,
"masterVolume": false,
"volumeControlNamePrefix": false,
"volumeControl": 0,
"volumeMax": 100,
"refreshInterval": 5,
"enableDebugMode": true,
"disableLogInfo": false,
"disableLogDeviceInfo": false,
"disableLogConnectError": false,
"restFul": {
"enable": false,
"debug": false
},
"mqtt": {
"enable": false,
"debug": false,
"auth": false
}
}
],
"_bridge": {
"username": "****************",
"port": 32947
},
"platform": "DenonTv"
}

Logs:
[12/31/2024, 10:45:22 AM] [homebridge-denon-tv] Launched child bridge with PID 8843
[12/31/2024, 10:45:23 AM] [homebridge-denon-tv] Loaded homebridge-denon-tv v5.2.3 child bridge successfully
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Connect Success.
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] -------- DENON S720W --------
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Manufacturer: Denon
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Model: *AVR-S720W
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Zones: 2
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Control: Main Zone
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Firmware: 0
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Api version: 300
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Serialnr: *********************
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] ----------------------------------
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Published as external accessory.
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Impulse generator started.
[12/31/2024, 10:45:24 AM] DENON S720W A87F is running on port 37389.
[12/31/2024, 10:45:24 AM] Please add [DENON S720W A87F] manually in Home app. Setup Code: 144-44-013
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Power: ON.
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Input Name: DVD.
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Reference: DVD.
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Volume: -50dB.
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Mute: OFF.
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Volume Control Type: Absolute.
[12/31/2024, 10:45:24 AM] [homebridge-denon-tv] Device: 10.0.0.2 DENON S720W, Picture Mode: OFF.

[12/31/2024, 12:24:38 PM] [homebridge-denon-tv] Device: 10.0.0.2 DENON, debug: State: {
"Power": {
"value": "OFF"
},
"InputFuncSelect": {
"value": "DVD"
},
"VolumeDisplay": {
"value": "Absolute"
},
"MasterVolume": {
"value": -48.5
},
"Mute": {
"value": "off"
}
}.

@grzegorz914
Copy link
Owner

Try troubleshooting section in wiki

@ThomasKWood
Copy link
Author

Yep I did the config UI method, restarted, and then reinstalled. Same issue persists

@grzegorz914
Copy link
Owner

May be try to change device name in config, as you see in the log all is published correct.

@ThomasKWood
Copy link
Author

I tried naming the accessory Denon and Denon S720W in the config with no luck. I agree, everything looks to be working on the Homebridge side but it will not add to HomeKit

@grzegorz914
Copy link
Owner

Also try to reboot your network router, switch, wlan, etc.

@ThomasKWood
Copy link
Author

Other plugins are communicating and adding to HomeKit just fine so I don't see how restarting the network infrastructure will fix it.

@grzegorz914
Copy link
Owner

Very strange, just removed device on my side and add it again without any problem.
IMG_1050

@ThomasKWood
Copy link
Author

Do you have Advanced Data Protection or Private Relay On? I am wondering if those may be interfering.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants