A Home Assistant integration for the
Trinnov Altitude AVR. Uses
the trinnov-altitude
library under the hood.
- Home Assistant instance (at minimum 2024.4.1).
- HACS (Home Assistant Community Store) installed on your Home Assistant.
- Trinnov Altitude set up and accessible from the network as your Home Assistant in connected to.
Installation via HACS
- Open HACS in your Home Assistant interface.
- Search for "Trinnov Altitude" and select it.
- Click the "Download" in bottom right of the page.
- Restart Home Assistant to apply the changes.
- Download the latest release from the GitHub repository.
- Unzip the release and copy the
custom_components/trinnov_altitude
folder to your Home Assistantconfig/custom_components
directory. - Restart Home Assistant to apply the changes.
After installation, add the Trinnov Altitude integration via the Home Assistant UI:
- Navigate to Configuration > Integrations.
- Click on the "+ Add Integration" button.
- Search for "Trinnov Altitude" and select it.
- Follow the on-screen instructions to complete the setup.
- Note: The MAC Address is optional, but is required to power on the Trinnov Altitude via Wake on Lan. The Trinnov Altitude does not have a standby mode that maintains TCP connections. Wake on Lan is the only way to power on the Trinnov Altitude over IP.
The Trinnov Altitude remote platform will create a Remote entity for the device. This entity allows you to send the following commands via the remote.send_command service.
A typical service call might look like the example below, which sends a command to the device to mute the volume.
service: remote.send_command
target:
entity_id: remote.trinnov_altitude
data:
command:
- mute_on
acoustic_correction_off
acoustic_correction_on
acoustic_correction_toggle
bypass_off
bypass_on
bypass_toggle
dim_off
dim_on
dim_toggle
front_display_off
front_display_on
front_display_toggle
level_alignment_off
level_alignment_on
level_alignment_toggle
mute_off
mute_on
mute_toggle
page_down
page_up
quick_optimized_off
quick_optimized_on
quick_optimized_toggle
time_alignment_off
time_alignment_on
time_alignment_toggle
volume_down
volume_up
preset_set (int)
remapping_mode_set (string)
source_set (int)
volume_set (decimal)
volume_ramp (decimal)
upmixer_set (string)
The integration creates multiple Binary Sensor entities for the device.
Bypass
is On when the device is bypassing the Trinnov optimizer.Dim
is On when the volume is dimmed.Mute
is On when the volume is muted.
The integration creates multiple Sensor entities for the device.
How the Altitude is syncing video with audio given upstream equipment.
Slave
Master
Bypass the Trinnov optimizer.
True
False
Current Trinnov preset loaded.
Current source loaded, will the be source name, not the index.
Current source format.
Current upmixer being used, if any.
Current volume level in dB, from -120.0db
to 20.0db
An example automation that turns on the Trinnov Altitude, sets the source, preset, and volume when a Kaleidescape players turns on.
Note: Because the Trinnov Altitude can take a variable amount of time to turn on, I've added a step to wait for it to power on before sending commands.
description: "Turn on Trinnov Altitude for Kaleidescape"
mode: single
trigger:
- platform: device
type: turned_on
entity_id: remote.kaleidescape
domain: remote
condition: []
action:
- type: turn_on
entity_id: remote.trinnov_altitude
domain: remote
- if:
- condition: device
type: is_off
entity_id: remote.trinnov_altitude
domain: remote
then:
- wait_for_trigger:
- platform: device
type: turned_on
entity_id: remote.trinnov_altitude
domain: remote
- service: remote.send_command
metadata: {}
data:
num_repeats: 1
delay_secs: 0.7
hold_secs: 0
command:
- source_set 0
- preset_set 1
- volume_set -40.0
target:
entity_id: remote.media_room_trinnov_altitude
If you encounter any issues or have questions about this integration, please open an issue on the GitHub repository.