From 90e15d07e5aa0b9947e5204ae2f26ebc3514dc6c Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Mon, 3 Feb 2025 23:27:58 +0100 Subject: [PATCH] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index d3274bffda..3ea3568b22 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -31,12 +31,16 @@ void Mcp4461Component::dump_config() { ESP_LOGCONFIG(TAG, "mcp4461:"); LOG_I2C_DEVICE(this); for (uint8_t i = 0; i < 8; ++i) { - ESP_LOGCONFIG(TAG, "Wiper [%" PRIu8 "]: %s", i, ONOFF(this->reg_[i].enabled)); - ESP_LOGCONFIG(TAG, " ├── State: %" PRIu16, this->reg_[i].state); - 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)); - ESP_LOGCONFIG(TAG, " └── Terminal HW: %s", ONOFF(this->reg_[i].terminal_hw)); + ESP_LOGCONFIG(TAG, "Wiper [%" PRIu8 "] level: %" PRIu16, this->reg_[i].state); + // 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, " ├── 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)); + ESP_LOGCONFIG(TAG, " └── Terminal HW: %s", ONOFF(this->reg_[i].terminal_hw)); + } } if (this->is_failed()) { ESP_LOGE(TAG, "Communication with mcp4461 failed!"); @@ -343,7 +347,7 @@ void Mcp4461Component::disable_terminal(MCP4461WiperIdx wiper, char terminal) { uint16_t Mcp4461Component::get_eeprom_value(MCP4461EEPRomLocation location) { uint8_t reg = 0; - reg |= static_cast(MCP4461_EEPROM_1 + (static_castlocation * 0x10)); + reg |= static_cast(MCP4461_EEPROM_1 + (static_cast(location) * 0x10)); reg |= static_cast Mcp4461Commands::READ; uint16_t buf; if (!this->read_byte_16(reg, &buf)) {