1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-04 18: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:27:11 +01:00 committed by GitHub
parent db3cf620f4
commit a02708da02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -142,7 +142,7 @@ void Mcp4461Component::update_wiper_level(uint8_t wiper) {
}
void Mcp4461Component::set_wiper_level(uint8_t wiper, uint16_t value) {
ESP_LOGV(TAG, "Setting MCP4461 wiper %d to %d!", wiper, value);
ESP_LOGV(TAG, "Setting MCP4461 wiper %" PRIu8 " to %" PRIu16 "!", wiper, value);
this->reg_[wiper].state = value;
this->update_ = true;
}