outside_air_temperature_sensor:
name: Outside Air Temp
disabled_by_default: false
This is working, I can see it in the message log. Despite the “sensor” name in the YAML though, it doesn’t show up as a home assistant sensor in the developer tools → State
I would appreciate some help figuring out how to turn that into a value that I can graph using the history graph card. I would also like to setup a notification once it gets close to the min temp that my unit can operate at although I am sure I can figure that part out if I can get some help turning it into a value in home assistant.
Its not listed in there. I thought that it would be a state within the climate control because it a is a sub of that:
climate:
- platform: cn105
id: hp
name: "${friendly_name}"
# Various optional sensors, not all sensors are supported by all heatpumps
outside_air_temperature_sensor:
name: Outside Air Temp
disabled_by_default: false
I asked ChatGPT and it said to break it out as a separate sensor within the YAML like this:
sensor:
- platform: cn105
type: outside_air_temperature
name: "Outside Air Temperature"
I am a little hesitant to experiment with something like my heat controls during winter but if I don’t get a response here that is what I am going to try next.