smartthings icon indicating copy to clipboard operation
smartthings copied to clipboard

Temperature Sensors not added

Open Cronus89 opened this issue 1 year ago • 4 comments

They are still listed as attributes, but in the Official Integration, they current_temperature and temperature attributes were auto setup as sensors. Can this be done here? Sure I can manually create the sensors, but it would be better to have them there by default.

Cronus89 avatar Mar 10 '23 18:03 Cronus89

Same here

trader-payne avatar May 25 '23 17:05 trader-payne

+1.

My model is detected as ARTIK051_PRAC_20K

saribe avatar Jul 20 '23 22:07 saribe

+1. Would be nice to have the temperature as sensor to create automations based on this

@Cronus89: How can you create the sensor manually?

Inspiro83 avatar Nov 12 '23 16:11 Inspiro83

+1. Would be nice to have the temperature as sensor to create automations based on this

@Cronus89: How can you create the sensor manually?

In my sensors.yml I made these. It just uses value_templates to get the state of an attribute of the AC `

  • platform: template sensors: office_air_temperature_measurement: friendly_name: "Office Air Temp" unit_of_measurement: '°F' icon_template: "mdi:thermometer" value_template: "{{ state_attr('climate.office_air', 'current_temperature') }}"

    living_room_air_temperature_measurement: friendly_name: "Living Room Air Temp" unit_of_measurement: '°F' icon_template: "mdi:thermometer" value_template: "{{ state_attr('climate.living_room_air', 'current_temperature') }}"

    kitchen_air_temperature_measurement: friendly_name: "Kitchen Air Temp" unit_of_measurement: '°F' icon_template: "mdi:thermometer" value_template: "{{ state_attr('climate.kitchen_air', 'current_temperature') }}"`

Cronus89 avatar Nov 13 '23 16:11 Cronus89