1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-05 10:20:27 +01:00

Update mcp4461_output.cpp

This commit is contained in:
Oliver Kleinecke 2025-02-04 10:13:36 +01:00 committed by GitHub
parent bafe4c22f3
commit c86a0c8489
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,7 +33,8 @@ void Mcp4461Wiper::save_level() {
ESP_LOGW(TAG, "Cannot save level for nonvolatile wiper %" PRIu8 " !", wiper_idx);
return;
}
Mcp4461WiperIdx nonvolatile_wiper = wiper_idx + 4;
uint8_t nonvolatile_wiper_idx = wiper_idx + 4;
Mcp4461WiperIdx nonvolatile_wiper = static_cast<Mcp4461WiperIdx>(nonvolatile_wiper_idx);
this->parent_->set_wiper_level(nonvolatile_wiper, this->state_);
}