We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ac4ebe commit 77e22abCopy full SHA for 77e22ab
1 file changed
src/Appliance/AirConditioner/AirConditioner.cpp
@@ -11,12 +11,12 @@ static const char *TAG = "AirConditioner";
11
void AirConditioner::m_setup() {
12
if (this->m_autoconfStatus != AUTOCONF_DISABLED)
13
this->m_getCapabilities();
14
- this->m_timerManager.registerTimer(this->m_powerUsageTimer);
15
- this->m_powerUsageTimer.setCallback([this](Timer *timer) {
16
- timer->reset();
17
- this->m_getPowerUsage();
18
- });
19
- this->m_powerUsageTimer.start(30000);
+ // this->m_timerManager.registerTimer(this->m_powerUsageTimer);
+ // this->m_powerUsageTimer.setCallback([this](Timer *timer) {
+ // timer->reset();
+ // this->m_getPowerUsage();
+ // });
+ // this->m_powerUsageTimer.start(30000);
20
}
21
22
static bool checkConstraints(const Mode &mode, const Preset &preset) {
0 commit comments