Turn off and on Denon/Marantz zones together with the main zone. (link main zone with zone 2 / zone 3, link zones)
When I turn on my main zone on my Marantz I want zone 2 to follow its state, meaning turn on together with the main power, and turn off when I power off the main zone
On this page
Adding your Marantz / Denon to home assistant
Follow the setup steps first, if you have not added your receiver to home assistant yet
Setting up the automations (two)
We will have to do this twice
- automation to turn off zone2/3 when main turns off
- automation to turn on zone2/3 when main turns on
Let’s head over to settings, automations, and create a new automation!


Turning off the zones with the main



alias: Turn off zone 2 if main turns off description: '' trigger: - platform: device device_id: 7b7e3d8fa679c7e685a8eacb67eefe2d domain: media_player entity_id: media_player.marantz_sr8012 type: turned_off condition: [] action: - service: media_player.turn_off data: {} target: entity_id: - media_player.marantz_sr8012_2 - media_player.marantz_sr8012_3 mode: single
Turning on the zones with the main



alias: Turn off zone 2 if main turns off description: '' trigger: - platform: device device_id: 7b7e3d8fa679c7e685a8eacb67eefe2d domain: media_player entity_id: media_player.marantz_sr8012 type: turned_off condition: [] action: - service: media_player.turn_off data: {} target: entity_id: - media_player.marantz_sr8012_2 - media_player.marantz_sr8012_3 mode: single
That’s it! no more warm receivers in the cabinet!
