Skip to content

Commit

Permalink
UART unavailable on D1 Mini (ESP8226) after ~12hrs
Browse files Browse the repository at this point in the history
Fixes #70
missing include correction
  • Loading branch information
echavet committed Apr 19, 2024
1 parent eb62aa3 commit e23e2ed
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion components/cn105/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@
)
from esphome.core import CORE, coroutine

AUTO_LOAD = ["climate", "sensor", "select", "binary_sensor", "text_sensor", "uart"]
AUTO_LOAD = [
"climate",
"sensor",
"select",
"binary_sensor",
"text_sensor",
"uart",
"uptime",
]

CONF_SUPPORTS = "supports"
# from https://github.com/wrouesnel/esphome-mitsubishiheatpump/blob/master/components/mitsubishi_heatpump/climate.py
Expand Down

0 comments on commit e23e2ed

Please sign in to comment.