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

Update mcp4461.cpp

This commit is contained in:
Oliver Kleinecke 2025-02-04 13:45:06 +01:00 committed by GitHub
parent 5a1e1611ff
commit abc46a8a32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ void Mcp4461Component::dump_config() {
// terminals only valid for volatile wipers 0-3 - enable/disable is terminal hw
// so also invalid for nonvolatile. For these, only print current level.
if (i < 4) {
ESP_LOGCONFIG(TAG, " ├── Status: %s", i, ONOFF(this->reg_[i].enabled));
ESP_LOGCONFIG(TAG, " ├── Status: %s", ONOFF(this->reg_[i].enabled));
ESP_LOGCONFIG(TAG, " ├── Terminal A: %s", ONOFF(this->reg_[i].terminal_a));
ESP_LOGCONFIG(TAG, " ├── Terminal B: %s", ONOFF(this->reg_[i].terminal_b));
ESP_LOGCONFIG(TAG, " ├── Terminal W: %s", ONOFF(this->reg_[i].terminal_w));