TV channels numbers

hello i have a question i,am working with the picture elements card for tv channels.
From 0 to 9 evrything works but from 10 it doesnt work anymore, what can i do for the rest of the channels.

With regards Xal

Please share an example.

Thanks for responding
Here is mine example

type: button
        tap_action:
          action: call-service
          service: remote.send_command
          data:
            device: '72555986'
            command: 1
          target:
            area_id: woonkamer
            device_id: d2468a791a9a0514ac95d186ca0f3111
            entity_id: switch.barts_remote_tv_kijken
        entity: remote.barts_remote
        name: NPO1

I hope you can help me

tap_action:
  action: call-service
  service: script.channel_10

script:

script:
  channel_10:
    sequence:
    - service: remote.send_command
      data:
        device: '72555986'
        command: 1
      target:
        entity_id: switch.barts_remote_tv_kijken
    - delay: 1 # may not be needed
    - service: remote.send_command
      data:
        device: '72555986'
        command: 0
      target:
        entity_id: switch.barts_remote_tv_kijken
3 Likes

Tom you are the best

1 Like