mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
0651716b96
Co-authored-by: Senex Crenshaw <senexcrenshaw@gmail.com>
30 lines
671 B
C++
30 lines
671 B
C++
#pragma once
|
|
#include "esphome/core/automation.h"
|
|
#include "nextion.h"
|
|
|
|
namespace esphome {
|
|
namespace nextion {
|
|
|
|
class SetupTrigger : public Trigger<> {
|
|
public:
|
|
explicit SetupTrigger(Nextion *nextion) {
|
|
nextion->add_setup_state_callback([this]() { this->trigger(); });
|
|
}
|
|
};
|
|
|
|
class SleepTrigger : public Trigger<> {
|
|
public:
|
|
explicit SleepTrigger(Nextion *nextion) {
|
|
nextion->add_sleep_state_callback([this]() { this->trigger(); });
|
|
}
|
|
};
|
|
|
|
class WakeTrigger : public Trigger<> {
|
|
public:
|
|
explicit WakeTrigger(Nextion *nextion) {
|
|
nextion->add_wake_state_callback([this]() { this->trigger(); });
|
|
}
|
|
};
|
|
|
|
} // namespace nextion
|
|
} // namespace esphome
|