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:15:01 +01:00 committed by GitHub
parent f2c3c56179
commit be7d5d7560
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -122,7 +122,8 @@ uint16_t Mcp4461Component::get_wiper_level(uint8_t wiper) {
reg |= (uint8_t) Mcp4461Commands::READ;
if (wiper > 3) {
while (this->is_writing_()) {
ESP_LOGV(TAG, "delaying during eeprom write");
ESP_LOGVV(TAG, "delaying during eeprom write");
yield();
}
}
if (!this->read_byte_16(reg, &buf)) {