Danfoss Ally TRV working with remote temp sensor

You should paste the yaml code in a ```yaml CODE ``` block to make it readable and properly indented:strong text

alias: Big room sensor temperature
sequence:
  service: zha.set_zigbee_cluster_attribute
  data:
    cluster_type: in
    ieee: 04:87:27:ff:fe:fa:92:aa
    endpoint_id: 1
    cluster_id: 513
    attribute: 16405
    value: {{ (states(“sensor.tz3000_mxzo5rhf_ts0201_temperature”) | float * 100) | round(0)}}
mode: single

The following should be more appropriate:

alias: Big room sensor temperature
sequence:
  - service: zha.issue_zigbee_cluster_command
    data:
      cluster_type: in
      ieee: 04:87:27:ff:fe:fa:92:aa
      endpoint_id: 1
      cluster_id: 513
      attribute: 16405
      value: >-
        {{ (states("sensor.tz3000_mxzo5rhf_ts0201_temperature") | float * 100) |
        round(0) }}
mode: single