1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-03 17:30:28 +01:00

Update mcp4461_output.cpp

This commit is contained in:
Oliver Kleinecke 2025-02-04 00:09:56 +01:00 committed by GitHub
parent 02d72031fc
commit ffc4cc2e58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,13 +14,13 @@ void Mcp4461Wiper::write_state(float state) {
const float max_taps = 256.0;
state = state * 1000.0;
if (state > max_taps) {
ESP_LOGW(TAG, "Cannot set taps > 0.256 for wiper %" PRIu8 ", clamping to 0.256!",
ESP_LOGW(TAG, "Cannot set taps > 0.256 for wiper %" PRIu8 "", clamping to 0.256!",
static_cast<uint8_t>(this->wiper_));
state = 256.0;
}
uint16_t taps;
taps = static_cast<uint16_t>(state);
ESP_LOGV(TAG, "Setting wiper %" PRIu8 " to value %" PRIu16 ", static_cast<uint8_t>(this->wiper_), taps);
ESP_LOGV(TAG, "Setting wiper %" PRIu8 " to value %" PRIu16 "", static_cast<uint8_t>(this->wiper_), taps);
this->state_ = state;
this->parent_->set_wiper_level(this->wiper_, taps);
}