Catch up with use of explicit namespaces in header.
This commit is contained in:
parent
860307bf98
commit
d04e617bf1
@ -100,8 +100,8 @@ class MitsubishiHeatPump : public esphome::PollingComponent, public esphome::cli
|
||||
// set_remote_temp(0) to switch back to the internal sensor.
|
||||
void set_remote_temperature(float);
|
||||
|
||||
void set_vertical_vane_select(select::Select *vertical_vane_select);
|
||||
void set_horizontal_vane_select(select::Select *horizontal_vane_select);
|
||||
void set_vertical_vane_select(esphome::select::Select *vertical_vane_select);
|
||||
void set_horizontal_vane_select(esphome::select::Select *horizontal_vane_select);
|
||||
|
||||
protected:
|
||||
// HeatPump object using the underlying Arduino library.
|
||||
@ -141,9 +141,9 @@ class MitsubishiHeatPump : public esphome::PollingComponent, public esphome::cli
|
||||
static void save(float value, esphome::ESPPreferenceObject& storage);
|
||||
static esphome::optional<float> load(esphome::ESPPreferenceObject& storage);
|
||||
|
||||
select::Select *vertical_vane_select_ =
|
||||
esphome::select::Select *vertical_vane_select_ =
|
||||
nullptr; // Select to store manual position of vertical swing
|
||||
select::Select *horizontal_vane_select_ =
|
||||
esphome::select::Select *horizontal_vane_select_ =
|
||||
nullptr; // Select to store manual position of horizontal swing
|
||||
|
||||
// When received command to change the vane positions
|
||||
|
Loading…
Reference in New Issue
Block a user