mirror of
https://github.com/esphome/esphome.git
synced 2026-09-20 11:38:48 +00:00
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
#include "text.h"
|
|
#include "esphome/core/defines.h"
|
|
#include "esphome/core/controller_registry.h"
|
|
#include "esphome/core/log.h"
|
|
#include <cstring>
|
|
|
|
namespace esphome {
|
|
namespace text {
|
|
|
|
static const char *const TAG = "text";
|
|
|
|
void Text::publish_state(const std::string &state) { this->publish_state(state.data(), state.size()); }
|
|
|
|
void Text::publish_state(const char *state) { this->publish_state(state, strlen(state)); }
|
|
|
|
void Text::publish_state(const char *state, size_t len) {
|
|
this->set_has_state(true);
|
|
this->state.assign(state, len);
|
|
if (this->traits.get_mode() == TEXT_MODE_PASSWORD) {
|
|
ESP_LOGD(TAG, "'%s': Sending state " LOG_SECRET("'%s'"), this->get_name().c_str(), this->state.c_str());
|
|
} else {
|
|
ESP_LOGD(TAG, "'%s': Sending state %s", this->get_name().c_str(), this->state.c_str());
|
|
}
|
|
this->state_callback_.call(this->state);
|
|
#if defined(USE_TEXT) && defined(USE_CONTROLLER_REGISTRY)
|
|
ControllerRegistry::notify_text_update(this);
|
|
#endif
|
|
}
|
|
|
|
void Text::add_on_state_callback(std::function<void(const std::string &)> &&callback) {
|
|
this->state_callback_.add(std::move(callback));
|
|
}
|
|
|
|
} // namespace text
|
|
} // namespace esphome
|