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:
parent
bafe4c22f3
commit
c86a0c8489
@ -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_);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user