mirror of
https://github.com/esphome/esphome.git
synced 2025-03-13 22:28:14 +00:00
Use signed value
This commit is contained in:
parent
92f3ae64d6
commit
e0ae7c1601
@ -27,8 +27,9 @@ float HX711Sensor::get_setup_priority() const { return setup_priority::DATA; }
|
||||
void HX711Sensor::update() {
|
||||
uint32_t result;
|
||||
if (this->read_sensor_(&result)) {
|
||||
ESP_LOGD(TAG, "'%s': Got value %u", this->name_.c_str(), result);
|
||||
this->publish_state(result);
|
||||
int32_t value = static_cast<int32_t>(result)
|
||||
ESP_LOGD(TAG, "'%s': Got value %d", this->name_.c_str(), value);
|
||||
this->publish_state(value);
|
||||
}
|
||||
}
|
||||
bool HX711Sensor::read_sensor_(uint32_t *result) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user