Files
esphome-dev/esphome/components/update/update_entity.cpp
T
2024-06-12 09:57:36 +12:00

13 lines
214 B
C++

#include "update_entity.h"
namespace esphome {
namespace update {
void UpdateEntity::publish_state() {
this->has_state_ = true;
this->state_callback_.call();
}
} // namespace update
} // namespace esphome