As of tvos13 the internal integration is not more suitable to use and bricked
@postlund is already making a new version of it and it works great (thumbs up!!!)
I will not cover the installation because postlund’s github provides enough information about that
For people who want to have a remote in their lovelace, here it is
i know we could do it with fewer lines buth for reproductions this was a bether solution
automation.yaml
- id: '1588893016815'
alias: menu klik
description: ''
trigger: []
condition: []
action:
- data:
command: menu
entity_id: remote.[your_entity]
entity_id: remote.[your_entity]
service: remote.send_command
- id: '1588893454390'
alias: left klik
description: ''
trigger: []
condition: []
action:
- data:
command: left
entity_id: remote.[your_entity]
entity_id: remote.[your_entity]
service: remote.send_command
- id: '1588893677501'
alias: right.click
description: ''
trigger: []
condition: []
action:
- data:
command: right
entity_id: remote.[your_entity]
entity_id: remote.[your_entity]
service: remote.send_command
- id: '1588894393629'
alias: up.click
description: ''
trigger: []
condition: []
action:
- data:
command: up
entity_id: remote.[your_entity]
entity_id: remote.[your_entity]
service: remote.send_command
- id: '1588894418468'
alias: down.click
description: ''
trigger: []
condition: []
action:
- data:
command: down
entity_id: remote.[your_entity]
entity_id: remote.[your_entity]
service: remote.send_command
- id: '1588896133904'
alias: enter.click
description: ''
trigger: []
condition: []
action:
- data:
command: select
entity_id: remote.[your_entity]
entity_id: remote.[your_entity]
service: remote.send_command
lovelace-ui.yaml (make a view with a manual card)
cards:
- entity: media_player.[your_player]
type: media-control
- entities:
- media_player.[your_player]
show_header_toggle: false
type: entities
- entity: media_player.[your_player]
type: media-control
- cards:
- cards:
- entity: remote.[your_entity]
hold_action:
action: none
icon: 'mdi:arrow-left'
name: Left knop
show_icon: true
show_name: false
tap_action:
action: call-service
service: automation.trigger
service_data:
entity_id: automation.left_click
type: button
- entity: remote.[your_entity]
hold_action:
action: none
icon: 'mdi:apple'
name: Enter klik
show_icon: true
show_name: false
tap_action:
action: call-service
service: automation.trigger
service_data:
entity_id: automation.enter_click
type: button
- entity: remote.[your_entity]
hold_action:
action: none
icon: 'mdi:arrow-right'
name: Right klik
show_icon: true
show_name: false
tap_action:
action: call-service
service: automation.trigger
service_data:
entity_id: automation.right_click
type: button
type: horizontal-stack
- cards:
- entity: remote.[your_entity]
hold_action:
action: none
icon: 'mdi:arrow-up'
name: up knop
show_icon: true
show_name: false
tap_action:
action: call-service
service: automation.trigger
service_data:
entity_id: automation.up_click
type: button
- entity: remote.[your_entity]
hold_action:
action: none
icon: 'mdi:menu'
name: Menu knop
show_icon: true
show_name: false
tap_action:
action: call-service
service: automation.trigger
service_data:
entity_id: automation.menu_click
type: button
- entity: remote.kamer_bas
hold_action:
action: none
icon: 'mdi:arrow-down'
name: down knop
show_icon: true
show_name: false
tap_action:
action: call-service
service: automation.trigger
service_data:
entity_id: automation.down_click
type: button
type: horizontal-stack
type: vertical-stack
eventually it will look like this