From abc46a8a3253bc3be4bc7548af599e87f61d03d9 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Tue, 4 Feb 2025 13:45:06 +0100 Subject: [PATCH] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 0105bc0c92..d609f7b5ac 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -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));