mirror of
https://github.com/esphome/esphome.git
synced 2025-11-15 06:15:47 +00:00
32 lines
903 B
C++
32 lines
903 B
C++
#include "text.h"
|
|
#include "esphome/core/defines.h"
|
|
#include "esphome/core/controller_registry.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace text {
|
|
|
|
static const char *const TAG = "text";
|
|
|
|
void Text::publish_state(const std::string &state) {
|
|
this->set_has_state(true);
|
|
this->state = state;
|
|
if (this->traits.get_mode() == TEXT_MODE_PASSWORD) {
|
|
ESP_LOGD(TAG, "'%s': Sending state " LOG_SECRET("'%s'"), this->get_name().c_str(), state.c_str());
|
|
|
|
} else {
|
|
ESP_LOGD(TAG, "'%s': Sending state %s", this->get_name().c_str(), state.c_str());
|
|
}
|
|
this->state_callback_.call(state);
|
|
#if defined(USE_TEXT) && defined(USE_CONTROLLER_REGISTRY)
|
|
ControllerRegistry::notify_text_update(this);
|
|
#endif
|
|
}
|
|
|
|
void Text::add_on_state_callback(std::function<void(std::string)> &&callback) {
|
|
this->state_callback_.add(std::move(callback));
|
|
}
|
|
|
|
} // namespace text
|
|
} // namespace esphome
|