smartthings
smartthings copied to clipboard
Temperature Sensors not added
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.
Same here
+1.
My model is detected as ARTIK051_PRAC_20K
+1. Would be nice to have the temperature as sensor to create automations based on this
@Cronus89: How can you create the sensor manually?
+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') }}"`