mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 23:48:11 +01:00
Update esphome/components/mqtt/mqtt_sensor.cpp
This commit is contained in:
parent
9af492c219
commit
cf8d931176
1 changed files with 1 additions and 1 deletions
|
@ -69,9 +69,9 @@ bool MQTTSensorComponent::send_initial_state() {
|
|||
}
|
||||
}
|
||||
bool MQTTSensorComponent::publish_state(float value) {
|
||||
int8_t accuracy = this->sensor_->get_accuracy_decimals();
|
||||
if (std::isnan(value))
|
||||
return this->publish(this->get_state_topic_(), "None");
|
||||
int8_t accuracy = this->sensor_->get_accuracy_decimals();
|
||||
return this->publish(this->get_state_topic_(), value_accuracy_to_string(value, accuracy));
|
||||
}
|
||||
std::string MQTTSensorComponent::unique_id() { return this->sensor_->unique_id(); }
|
||||
|
|
Loading…
Reference in a new issue