mirror of
https://github.com/GrKoR/esphome_aux_ac_component.git
synced 2025-12-06 11:36:55 +03:00
display control fixed
This commit is contained in:
@@ -13,7 +13,7 @@ namespace aux_ac {
|
||||
public:
|
||||
explicit AirConDisplayOffAction(AirCon *ac) : ac_(ac) {}
|
||||
|
||||
void play(Ts... x) override { this->ac_->displaySequence(AC_DISPLAY_OFF); }
|
||||
void play(Ts... x) override { this->ac_->displayOffSequence(); }
|
||||
|
||||
protected:
|
||||
AirCon *ac_;
|
||||
@@ -25,7 +25,7 @@ namespace aux_ac {
|
||||
public:
|
||||
explicit AirConDisplayOnAction(AirCon *ac) : ac_(ac) {}
|
||||
|
||||
void play(Ts... x) override { this->ac_->displaySequence(AC_DISPLAY_ON); }
|
||||
void play(Ts... x) override { this->ac_->displayOnSequence(); }
|
||||
|
||||
protected:
|
||||
AirCon *ac_;
|
||||
|
||||
Reference in New Issue
Block a user