diff --git a/esphome/components/midea/appliance_base.h b/esphome/components/midea/appliance_base.h index d6f2101ec6..060cbd996b 100644 --- a/esphome/components/midea/appliance_base.h +++ b/esphome/components/midea/appliance_base.h @@ -13,8 +13,6 @@ #include "esphome/core/log.h" #include "esphome/components/uart/uart.h" #include "esphome/components/climate/climate.h" - -// IR #include "ir_transmitter.h" namespace esphome { diff --git a/esphome/components/midea/climate.py b/esphome/components/midea/climate.py index 22c01b3ce9..707f6c5bbd 100644 --- a/esphome/components/midea/climate.py +++ b/esphome/components/midea/climate.py @@ -173,10 +173,6 @@ MIDEA_ACTION_BASE_SCHEMA = cv.Schema( ) # FollowMe action -MIDEA_FOLLOW_ME_MIN_C = 0 -MIDEA_FOLLOW_ME_MAX_C = 37 -MIDEA_FOLLOW_ME_MIN_F = 32 -MIDEA_FOLLOW_ME_MAX_F = 99 MIDEA_FOLLOW_ME_SCHEMA = cv.Schema( { cv.Required(CONF_TEMPERATURE): cv.templatable(cv.temperature),