Search for a way to control Tado over Home Assistent with KNX

ich bin mir halt auch nicht sicher ob meine Einrückungen und vorzeichen richtig sind. Ich weiß nicht wie genau das in yaml bewertet wird. Ist halt komplettes Neuland für mich.

benutze HA ausschließlich als Gateway, da ich eigentlich aus der KNX Welt komme und nur nach einer Multischnittstelle zwischen verschiednen Systemen suche.

  • others couldn’t follow
  • the solution couldn’t be linked to in the future
  • moderators wouldn’t understand it
  • its against the forum rules

Your indentation seems fine. Otherwise it would probably show in the logs.

If you see, in the debugger, that the automation was triggered they you should also see what triggered it (the event and its data) and what happened next.

I adjusted the configuration to get a decent debug.

the new automation config here:

- id: "1670696462439"
  alias: Neue Automatisierung
  description: ""
  trigger:
    - platform: event
      event_type: knx_event
      event_data:
        destination: "4/1/2"
  action:
    - service: climate.set_temperature
      target:
        entity_id: climate.wohnen
      data:
        temperatue: "{{ trigger.event.data.value }}"

and now i have this error message in debug:

and this:

Executed: 10. Dezember 2022 um 19:25:18
Result:

params:
  domain: climate
  service: set_temperature
  service_data:
    temperatue: 22
    entity_id:
      - climate.wohnen
  target:
    entity_id:
      - climate.wohnen
running_script: false
limit: 10

Have a look at the documentation of the service https://www.home-assistant.io/integrations/climate/#service-climateset_temperature

You can just try to call with different arguments in Open your Home Assistant instance and show your service developer tools. and see what works.

OK, i got it.

- id: "1670696462439"
  alias: Wohnen Soll-Temp
  description: ""
  trigger:
    - platform: event
      event_type: knx_event
      event_data:
        destination: 4/1/2
  action:
    - service: climate.set_temperature
      data:
        temperature: "{{ trigger.event.data.value }}"
      target:
        device_id: ee40bf22ac318c61f97ed8de95a78e9f
  mode: single

many thank´s for your help.

how can i close the post?

1 Like