1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-30 06:33:51 +00:00

Tuya fan component uses enum datapoint type for speed instead of integer (#2182)

Co-authored-by: Chris Nussbaum <chris.nussbaum@protolabs.com>
This commit is contained in:
Chris Nussbaum
2021-08-23 20:20:39 -05:00
committed by GitHub
parent ce29a3b07a
commit eff626248f

View File

@@ -80,7 +80,7 @@ void TuyaFan::write_state() {
}
if (this->speed_id_.has_value()) {
ESP_LOGV(TAG, "Setting speed: %d", this->fan_->speed);
this->parent_->set_integer_datapoint_value(*this->speed_id_, this->fan_->speed - 1);
this->parent_->set_enum_datapoint_value(*this->speed_id_, this->fan_->speed - 1);
}
}