Aqara TRV external temp via zigbee

@pavax thank you🙏

Hey there,
I just moved with my Aqara SRTS-A01 and before I also used the mqqt.publish method.

Now I just stumbled upon the number.[..]_external_temperature_input
Just FYI for those who like me didn’t kno this exists ^^

So this seem to work just fine for me:

  - if:
      - condition: device
        device_id: ###
        domain: select
        entity_id: ###
        type: selected_option
        option: internal
    then:
      - device_id: ###
        domain: select
        entity_id: ###
        type: select_option
        option: external
  - delay:
      hours: 0
      minutes: 0
      seconds: 5
      milliseconds: 0
  - service: number.set_value
    metadata: {}
    data:
      value: "{{ (states('sensor.sensomatic_01_temperature')|float(0)|round(1)) }}"
    target:
      entity_id: number.thermostat_office_external_temperature_input

where thermostat_office is the name of my thermostat

1 Like

Out of curiosity, is this still using the Zigbee2MQTT Integration or ZHA? Or asked differently, does the ZHA Integration also have this entity?