mirror of
https://github.com/esphome/esphome.git
synced 2025-11-19 16:25:50 +00:00
20 lines
481 B
C++
20 lines
481 B
C++
#include "cs226_button.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace cst226 {
|
|
|
|
static const char *const TAG = "CST226.binary_sensor";
|
|
|
|
void CST226Button::setup() {
|
|
this->parent_->register_button_listener(this);
|
|
this->publish_initial_state(false);
|
|
}
|
|
|
|
void CST226Button::dump_config() { LOG_BINARY_SENSOR("", "CST226 Button", this); }
|
|
|
|
void CST226Button::update_button(bool state) { this->publish_state(state); }
|
|
|
|
} // namespace cst226
|
|
} // namespace esphome
|