Needed help with enocean switch setup [closed]

I have went through a lot of haos lore, but i’m still far from knowing much of anything. I’m setting up my enocean eltako fsr14-4x to work with home assistant and have come quite far - it finally switches on in a kind of dialogue. however, the last step in a guide I’m following (Using virtual buttons with Eltako FAM14 · mak-gitdev/HA_enoceanmqtt Wiki · GitHub) just won’t work for me. I’ve figured out the code for the button needs to be placed in configuration.yaml and I should replace “service” with “action” for non-legacy’s sake. However, the button neither reflects the state of the relay, nor will it do anything when toggled except raise the following error in log viewer

2025-02-09 18:59:40.920 WARNING (MainThread) homeassistant.helpers.service] Referenced entities select.e2m_relay_timon_action are missing or not currently available

(timon is the name of the light) I’d like to find someone who has haos or even enocean experience and can help me with this. thanks in advance (Bearbeitet)

my enoceanmqtt.devices

[relay_state/timon]
rorg    = 0xf6
func = 0x02
type = 0x01
address = 0xFFFFFFFF

[relay/timon]
address         = 0xFFFFFFFF
rorg            = 0xF6
func            = 0x02
type            = 0x01
sender          = 0xFFA6E480
virtual         = 1

and my addition to configuration.yaml

switch:
  
platform: template
  switches:
    timon:
      friendly_name: Timon licht
      value_template: "{{ is_state('binary_sensor.e2m_relay_state_timon_bo_pressed', 'on') }}"
      turn_on:
action: select.select_option
        target:
          entity_id: select.e2m_relay_timon_action
        data:
          option: AO
    turn_off:
action: select.select_option
      target:
        entity_id: select.e2m_relay_timon_action
      data:
        option: AI

i got it, i was stupid