I’m getting the below error message in my log related to how I setup the buttons for my remotes. Can someone take a look at the code and tell me what I need to do to fix it? Thanks.
Not passing an entity ID to a service to target all entities is deprecated. Update your call to remote.send_command to be instead: entity_id: all
You’ve mangled the format a bit and missed some key: value pairs. The format should be along these lines:
type: 'custom:tiles-card'
entities:
- row: 1
column: 1 ### You missed this
entity_id: remote.harmony_hub
label_sec:
value: TiVo
icon:
value: /local/icons/tivo_icons/ps_tivo_logo.ico
service: remote.send_command
data:
device: '32609430'
command: TiVo
I’m not 100% sure the tiles card can include data with the service (I use scripts, as I posted above). I had a look at the docs. I think it can.
The order of the key : value pairs is not important (home assistant will alpha-bastardise it if you are not using yaml mode) - but the structure is important. Pay close attention to the indentation.