1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-06 19:00:29 +01:00

Update esphome/components/mcp4461/mcp4461.cpp

Co-authored-by: Djordje Mandic <6750655+DjordjeMandic@users.noreply.github.com>
This commit is contained in:
Oliver Kleinecke 2025-02-03 12:28:11 +01:00 committed by GitHub
parent 71f9b8f8f8
commit 643f36eda5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -164,7 +164,7 @@ void Mcp4461Component::enable_wiper(uint8_t wiper) {
} }
void Mcp4461Component::disable_wiper(uint8_t wiper) { void Mcp4461Component::disable_wiper(uint8_t wiper) {
ESP_LOGV(TAG, "Disabling wiper %d", wiper); ESP_LOGV(TAG, "Disabling wiper %" PRIu8, wiper);
this->reg_[wiper].terminal_hw = false; this->reg_[wiper].terminal_hw = false;
this->update_ = true; this->update_ = true;
} }