8000 Fixed duplicated mapping key errors in the yaml card example by musapinar · Pull Request #34213 · home-assistant/home-assistant.io · GitHub
[go: up one dir, main page]

Skip to content

Fixed duplicated mapping key errors in the yaml card example #34213

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

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions source/_integrations/androidtv_remote.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ cards:
icon: mdi:arrow-up-bold
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: DPAD_UP
target:
Expand All @@ -335,7 +335,7 @@ cards:
icon: mdi:arrow-left-bold
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: DPAD_LEFT
target:
Expand All @@ -346,14 +346,14 @@ cards:
icon: mdi:circle
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: DPAD_CENTER
target:
entity_id: remote.living_room_tv
hold_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: DPAD_CENTER
hold_secs: 0.5
Expand All @@ -363,7 +363,7 @@ cards:
icon: mdi:arrow-right-bold
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: DPAD_RIGHT
target:
Expand All @@ -374,14 +374,14 @@ cards:
icon: mdi:arrow-left
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: BACK
target:
entity_id: remote.living_room_tv
hold_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: BACK
hold_secs: 0.5
Expand All @@ -391,7 +391,7 @@ cards:
icon: mdi:arrow-down-bold
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: DPAD_DOWN
target:
Expand All @@ -402,14 +402,14 @@ cards:
icon: mdi:home-outline
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: HOME
target:
entity_id: remote.living_room_tv
hold_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: HOME
hold_secs: 0.5
Expand All @@ -423,14 +423,14 @@ cards:
icon: mdi:skip-previous
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: MEDIA_PREVIOUS
target:
entity_id: remote.living_room_tv
hold_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: MEDIA_REWIND
target:
Expand All @@ -439,14 +439,14 @@ cards:
icon: mdi:play-pause
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: MEDIA_PLAY_PAUSE
target:
entity_id: remote.living_room_tv
hold_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: MEDIA_STOP
target:
Expand All @@ -455,14 +455,14 @@ cards:
icon: mdi:skip-next
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: MEDIA_NEXT
target:
entity_id: remote.living_room_tv
hold_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: MEDIA_FAST_FORWARD
target:
Expand All @@ -471,7 +471,7 @@ cards:
icon: mdi:volume-off
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: MUTE
target:
Expand All @@ -482,7 +482,7 @@ cards:
icon: mdi:volume-medium
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: VOLUME_DOWN
target:
Expand All @@ -493,7 +493,7 @@ cards:
icon: mdi:volume-high
tap_action:
action: call-service
action: remote.send_command
service: remote.send_command
data:
command: VOLUME_UP
target:
Expand Down
0