You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-26Lines changed: 20 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,19 @@ After installation, add the Trinnov Altitude integration via the Home Assistant
48
48
49
49
The Trinnov Altitude remote platform will create a [Remote](https://www.home-assistant.io/integrations/remote/) entity for the device. This entity allows you to send the following commands via the [remote.send_command](https://www.home-assistant.io/integrations/remote/) service.
50
50
51
+
A typical service call might look like the example below, which sends a command to the device to select the currently highlighted item.
52
+
53
+
```yaml
54
+
service: remote.send_command
55
+
target:
56
+
entity_id: remote.trinnov_altitude
57
+
data:
58
+
command:
59
+
- volume_up
60
+
```
61
+
62
+
#### Single Commands
63
+
51
64
- `acoustic_correction_off`
52
65
- `acoustic_correction_on`
53
66
- `acoustic_correction_toggle`
@@ -68,42 +81,23 @@ The Trinnov Altitude remote platform will create a [Remote](https://www.home-ass
68
81
- `mute_toggle`
69
82
- `page_down`
70
83
- `page_up`
71
-
-`preset_set`
72
84
- `quick_optimized_off`
73
85
- `quick_optimized_on`
74
86
- `quick_optimized_toggle`
75
-
-`remapping_mode_set`
76
-
-`source_set`
77
87
- `time_alignment_off`
78
88
- `time_alignment_on`
79
89
- `time_alignment_toggle`
80
-
-`upmixer_set`
81
90
- `volume_down`
82
-
-`volume_ramp`
83
-
-`volume_set`
84
91
- `volume_up`
85
92
86
-
A typical service call might look like the example below, which sends a command to the device to select the currently highlighted item.
87
-
88
-
```yaml
89
-
service: remote.send_command
90
-
target:
91
-
entity_id: remote.trinnov_altitude
92
-
data:
93
-
command:
94
-
- volume_up
95
-
```
96
-
97
-
Commands can take arguments, like that of the `source_set` command:
0 commit comments