Skip to content

Commit

Permalink
Don't convert climate temperature step (esphome#4082)
Browse files Browse the repository at this point in the history
  • Loading branch information
jesserockz authored Nov 24, 2022
1 parent 294901f commit 555bba7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion esphome/components/climate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@
{
cv.Optional(CONF_MIN_TEMPERATURE): cv.temperature,
cv.Optional(CONF_MAX_TEMPERATURE): cv.temperature,
cv.Optional(CONF_TEMPERATURE_STEP): cv.temperature,
cv.Optional(CONF_TEMPERATURE_STEP): cv.float_with_unit(
"visual_temperature", "(°C|° C|°|C|° K|° K|K|°F|° F|F)?"
),
}
),
cv.Optional(CONF_ACTION_STATE_TOPIC): cv.All(
Expand Down

0 comments on commit 555bba7

Please sign in to comment.