From 6b60e8dc9ebbab6448213fdd8852bdd1eefe29a3 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Tue, 4 Feb 2025 20:20:24 +0100 Subject: [PATCH 001/110] 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 080a9bdb8f..43fa59f746 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -123,7 +123,7 @@ uint8_t Mcp4461Component::get_wiper_address_(uint8_t wiper) { uint16_t Mcp4461Component::get_wiper_level(Mcp4461WiperIdx wiper) { uint8_t wiper_idx = static_cast(wiper); - if (!this->reg_[wiper_idx].enabled) { + if (!(this->reg_[wiper_idx].enabled)) { ESP_LOGW(TAG, "reading from disabled volatile wiper %" PRIu8 ", returning 0", wiper_idx); return static_cast(0); } From 0d3a1d50eaadcb6abbc2c5f59d5494f9a81fdfb8 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Tue, 4 Feb 2025 22:18:14 +0100 Subject: [PATCH 002/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 43fa59f746..41b38e4f9d 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -83,7 +83,7 @@ uint16_t Mcp4461Component::get_status_register() { uint16_t buf; if (!this->read_byte_16(reg, &buf)) { this->status_set_warning(); - ESP_LOGW(TAG, "Error fetching status register value"); + ESP_LOGE(TAG, "Error fetching status register value"); return 0; } return buf; @@ -112,7 +112,7 @@ uint8_t Mcp4461Component::get_wiper_address_(uint8_t wiper) { addr = static_cast(Mcp4461Addresses::MCP4461_VW3); break; default: - ESP_LOGE(TAG, "unknown wiper specified"); + ESP_LOGW(TAG, "unknown wiper specified"); return 0; } if (nonvolatile) { From 42f86600473788bbbe1d2b5ca44bf9ad8f4e8dc3 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Tue, 4 Feb 2025 22:24:33 +0100 Subject: [PATCH 003/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index e94c143b94..3b870cf6b9 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -56,7 +56,7 @@ class Mcp4461Wiper; class Mcp4461Component : public Component, public i2c::I2CDevice { public: Mcp4461Component(bool disable_wiper_0, bool disable_wiper_1, bool disable_wiper_2, bool disable_wiper_3) - : wiper_0_enabled_(false), wiper_1_enabled_(false), wiper_2_enabled_(false), wiper_3_enabled_(false) { + : wiper_0_enabled_(true), wiper_1_enabled_(true), wiper_2_enabled_(true), wiper_3_enabled_(true) { this->reg_[0].enabled = this->wiper_0_enabled_; this->reg_[1].enabled = this->wiper_1_enabled_; this->reg_[2].enabled = this->wiper_2_enabled_; From 3232bb795a3b24ac168e0669ff25a36824001e49 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Tue, 4 Feb 2025 22:27:45 +0100 Subject: [PATCH 004/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index 3b870cf6b9..e94c143b94 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -56,7 +56,7 @@ class Mcp4461Wiper; class Mcp4461Component : public Component, public i2c::I2CDevice { public: Mcp4461Component(bool disable_wiper_0, bool disable_wiper_1, bool disable_wiper_2, bool disable_wiper_3) - : wiper_0_enabled_(true), wiper_1_enabled_(true), wiper_2_enabled_(true), wiper_3_enabled_(true) { + : wiper_0_enabled_(false), wiper_1_enabled_(false), wiper_2_enabled_(false), wiper_3_enabled_(false) { this->reg_[0].enabled = this->wiper_0_enabled_; this->reg_[1].enabled = this->wiper_1_enabled_; this->reg_[2].enabled = this->wiper_2_enabled_; From ca12ca86186899e2ec8ed81a85c5f353333b870a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 00:38:14 +0100 Subject: [PATCH 005/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 41b38e4f9d..0af0474389 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -23,8 +23,11 @@ void Mcp4461Component::begin_() { for (uint8_t i = 0; i < 8; i++) { if (this->reg_[i].enabled) { this->reg_[i].state = this->read_wiper_level_(i); + } else { + Mcp4461WiperIdx wiper_idx; + wiper_idx = static_cast(i); + this->disable_wiper(wiper_idx); } - } } void Mcp4461Component::dump_config() { From 0583343cc1bb8148bc289f8427da2cca171a2748 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 00:45:54 +0100 Subject: [PATCH 006/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 91f00b83ff..d898bd0ed7 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -20,7 +20,7 @@ class Mcp4461Wiper : public output::FloatOutput { terminal_w_(terminal_w) { uint8_t wiper_idx = static_cast(wiper); // update wiper connection state - if (!enable && wiper_idx < 4) { + if (!this->enable_ && wiper_idx < 4) { parent->reg_[wiper_idx].enabled = false; parent->disable_terminal(wiper, 'h'); } From d9e8ce79937e156a8eb683d13d7b0720516950d3 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 00:46:58 +0100 Subject: [PATCH 007/110] 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 0af0474389..25af3437ec 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -25,7 +25,7 @@ void Mcp4461Component::begin_() { this->reg_[i].state = this->read_wiper_level_(i); } else { Mcp4461WiperIdx wiper_idx; - wiper_idx = static_cast(i); + wiper_idx = static_cast(i); this->disable_wiper(wiper_idx); } } From 1d138e5607c3c3b9838e10f129c3b675a521428d Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 00:49:26 +0100 Subject: [PATCH 008/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 25af3437ec..4a428c4f54 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -28,6 +28,7 @@ void Mcp4461Component::begin_() { wiper_idx = static_cast(i); this->disable_wiper(wiper_idx); } + } } void Mcp4461Component::dump_config() { From 0524e0b96f85a6eb1b1d2a50ac237bd1b4052371 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 00:52:22 +0100 Subject: [PATCH 009/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 4a428c4f54..dc6c5e5d16 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -167,6 +167,10 @@ void Mcp4461Component::set_wiper_level(Mcp4461WiperIdx wiper, uint16_t value) { ESP_LOGW(TAG, "ignoring invalid wiper level %" PRIu16 "!"); return; } + if (!(this->reg_[wiper_idx].enabled)) { + ESP_LOGW(TAG, "writing to disabled volatile wiper %" PRIu8 " is prohibited", wiper_idx); + return static_cast(0); + } ESP_LOGV(TAG, "Setting MCP4461 wiper %" PRIu8 " to %" PRIu16 "!", wiper_idx, value); this->reg_[wiper_idx].state = value; this->update_ = true; From b9a68695734a61fbfe607345034a24a6f12aecf1 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 00:54:38 +0100 Subject: [PATCH 010/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index d898bd0ed7..bb5c9ddbd9 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -20,7 +20,7 @@ class Mcp4461Wiper : public output::FloatOutput { terminal_w_(terminal_w) { uint8_t wiper_idx = static_cast(wiper); // update wiper connection state - if (!this->enable_ && wiper_idx < 4) { + if (!(this->enable_) && wiper_idx < 4) { parent->reg_[wiper_idx].enabled = false; parent->disable_terminal(wiper, 'h'); } From b3625ceb551265d5ef2d2b5600bd7d5208f9b61f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 01:00:06 +0100 Subject: [PATCH 011/110] 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 dc6c5e5d16..008a876712 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -169,7 +169,7 @@ void Mcp4461Component::set_wiper_level(Mcp4461WiperIdx wiper, uint16_t value) { } if (!(this->reg_[wiper_idx].enabled)) { ESP_LOGW(TAG, "writing to disabled volatile wiper %" PRIu8 " is prohibited", wiper_idx); - return static_cast(0); + return; } ESP_LOGV(TAG, "Setting MCP4461 wiper %" PRIu8 " to %" PRIu16 "!", wiper_idx, value); this->reg_[wiper_idx].state = value; From 9a9e312d7848ba95d626323d68982f7618ae7333 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 12:28:23 +0100 Subject: [PATCH 012/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 008a876712..a946098f21 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -23,7 +23,8 @@ void Mcp4461Component::begin_() { for (uint8_t i = 0; i < 8; i++) { if (this->reg_[i].enabled) { this->reg_[i].state = this->read_wiper_level_(i); - } else { + } else { + this->reg_[i].state = 0; Mcp4461WiperIdx wiper_idx; wiper_idx = static_cast(i); this->disable_wiper(wiper_idx); From 354b980acba10df62c4239e10d4de200def91f32 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 12:37:58 +0100 Subject: [PATCH 013/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index a946098f21..cd0d1d1925 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -24,10 +24,13 @@ void Mcp4461Component::begin_() { if (this->reg_[i].enabled) { this->reg_[i].state = this->read_wiper_level_(i); } else { - this->reg_[i].state = 0; - Mcp4461WiperIdx wiper_idx; - wiper_idx = static_cast(i); - this->disable_wiper(wiper_idx); + // only volatile wipers can be disabled + if (i < 4) { + this->reg_[i].state = 0; + Mcp4461WiperIdx wiper_idx; + wiper_idx = static_cast(i); + this->disable_wiper(wiper_idx); + } } } } @@ -41,10 +44,10 @@ void Mcp4461Component::dump_config() { // so also invalid for nonvolatile. For these, only print current level. if (i < 4) { ESP_LOGCONFIG(TAG, " ├── Status: %s", ONOFF(this->reg_[i].enabled)); + ESP_LOGCONFIG(TAG, " ├── Terminal HW: %s", ONOFF(this->reg_[i].terminal_hw)); 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, " └── Terminal W: %s", ONOFF(this->reg_[i].terminal_w)); } } if (this->is_failed()) { From fec35028e14b269b882cb9011ae6e8f6e9b7927a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 12:38:21 +0100 Subject: [PATCH 014/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index e94c143b94..2b1946dc2c 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -11,7 +11,7 @@ struct WiperState { bool terminal_b = true; bool terminal_w = true; bool terminal_hw = true; - uint16_t state; + uint16_t state = 0; bool enabled = true; }; From 89c5657633f19a056d2701994d93336a57cd11d7 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 13:32:13 +0100 Subject: [PATCH 015/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index 2b1946dc2c..cedd34a51f 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -56,11 +56,11 @@ class Mcp4461Wiper; class Mcp4461Component : public Component, public i2c::I2CDevice { public: Mcp4461Component(bool disable_wiper_0, bool disable_wiper_1, bool disable_wiper_2, bool disable_wiper_3) - : wiper_0_enabled_(false), wiper_1_enabled_(false), wiper_2_enabled_(false), wiper_3_enabled_(false) { - this->reg_[0].enabled = this->wiper_0_enabled_; - this->reg_[1].enabled = this->wiper_1_enabled_; - this->reg_[2].enabled = this->wiper_2_enabled_; - this->reg_[3].enabled = this->wiper_3_enabled_; + : wiper_0_disabled_(disable_wiper_0), wiper_1_disabled_(disable_wiper_1), wiper_2_disabled_(disable_wiper_2), wiper_3_disabled_(disable_wiper_3) { + this->reg_[0].enabled = !wiper_0_disabled_; + this->reg_[1].enabled = !wiper_1_disabled_; + this->reg_[2].enabled = !wiper_2_disabled_; + this->reg_[3].enabled = !wiper_3_disabled_; } void setup() override; From 3cb7be56d734ff3c1dea86cc2b595b0bd6e88a62 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 13:35:52 +0100 Subject: [PATCH 016/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index cedd34a51f..b0df9ba42c 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -96,10 +96,10 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { WiperState reg_[8]; void begin_(); bool update_{false}; - bool wiper_0_enabled_{true}; - bool wiper_1_enabled_{true}; - bool wiper_2_enabled_{true}; - bool wiper_3_enabled_{true}; + bool disable_wiper_0{false}; + bool disable_wiper_1{false}; + bool disable_wiper_2{false}; + bool disable_wiper_3{false}; }; } // namespace mcp4461 } // namespace esphome From c7cc880a8cdf0306920d24d078a4a844ab69af84 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:03:13 +0100 Subject: [PATCH 017/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 58 ++++++++++++++++++++++---- 1 file changed, 50 insertions(+), 8 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index cd0d1d1925..2501032147 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -38,16 +38,52 @@ void Mcp4461Component::begin_() { void Mcp4461Component::dump_config() { ESP_LOGCONFIG(TAG, "mcp4461:"); LOG_I2C_DEVICE(this); + // log current device status register at start + // from datasheet: + // (1) means, bit is hard-locked to value 1 + // Bit 0 is WP status (=>pin) + // Bit 1 is named "R-1"-pin in datasheet an declared "reserved" and forced to 1 + // Bit 2 is WiperLock-Status resistor-network 0 + // Bit 3 is WiperLock-Status resistor-network 1 + // Bit 4 is EEPROM-Write-Active-Status bit + // Bit 5 is WiperLock-Status resistor-network 2 + // Bit 6 is WiperLock-Status resistor-network 3 + // Bit 7+8 are referenced in datasheet as D7 + D8 and both locked to 1 + // Default status register reading should be 0x182h or 386 decimal + // "Default" means without any WiperLocks or WriteProtection enabled and EEPRom not active writing + // get_status_register() will automatically check, if D8 bit (locked to 1) is 1 and bail out using error-routine otherwise + uint8_t status_register_value; + status_register_value = this->get_status_register(); + ESP_LOGCONFIG(TAG, "MCP4461 status register: , "D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WP: %" PRIu8 ", + ((status_register_value >> 7) & 0x01), + ((status_register_value >> 6) & 0x01), + ((status_register_value >> 5) & 0x01), + ((status_register_value >> 4) & 0x01), + ((status_register_value >> 3) & 0x01), + ((status_register_value >> 2) & 0x01), + ((status_register_value >> 1) & 0x01), + ((status_register_value >> 0) & 0x01) + ); for (uint8_t i = 0; i < 8; ++i) { - ESP_LOGCONFIG(TAG, "Wiper [%" PRIu8 "] level: %" PRIu16, i, 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. + // reworked to be a one-line intentionally, as output would not be in order if (i < 4) { - ESP_LOGCONFIG(TAG, " ├── Status: %s", ONOFF(this->reg_[i].enabled)); - ESP_LOGCONFIG(TAG, " ├── Terminal HW: %s", ONOFF(this->reg_[i].terminal_hw)); - 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, "Volatile wiper [%" PRIu8 "] level: %" PRIu16 ", Status: %s, HW: %s, A: %s, B: %s, W: %s", + i, + this->reg_[i].state, + ONOFF(this->reg_[i].terminal_hw), + ONOFF(this->reg_[i].terminal_a), + ONOFF(this->reg_[i].terminal_b), + ONOFF(this->reg_[i].terminal_w), + ONOFF(this->reg_[i].enabled)); + // ESP_LOGCONFIG(TAG, " ├── Status: %s", ONOFF(this->reg_[i].enabled)); + // ESP_LOGCONFIG(TAG, " ├── Terminal HW: %s", ONOFF(this->reg_[i].terminal_hw)); + // 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)); + } else { + ESP_LOGCONFIG(TAG, "Nonvolatile wiper [%" PRIu8 "] level: %" PRIu16 "", i, this->reg_[i].state); } } if (this->is_failed()) { @@ -84,7 +120,7 @@ void Mcp4461Component::loop() { } } -uint16_t Mcp4461Component::get_status_register() { +uint8_t Mcp4461Component::get_status_register() { uint8_t reg = 0; reg |= static_cast(Mcp4461Addresses::MCP4461_STATUS); reg |= static_cast(Mcp4461Commands::READ); @@ -94,7 +130,13 @@ uint16_t Mcp4461Component::get_status_register() { ESP_LOGE(TAG, "Error fetching status register value"); return 0; } - return buf; + uint8_t msb = buf >> 8; + if (msb != 1) { + // D8 bit is hardlocked to 1 -> a status msb of 0 indicates device/communication issues, therefore mark component failed + this->mark_failed(); + return 0; + } + return static_cast(buf & 0x00ff); } bool Mcp4461Component::is_writing_() { return static_cast((this->get_status_register() >> 4) & 0x01); } From 38062ee3a51ab41f2ba6bbd6eb64f71c538feee9 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:06:33 +0100 Subject: [PATCH 018/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index b0df9ba42c..32c24c56cc 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -68,7 +68,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { float get_setup_priority() const override { return setup_priority::HARDWARE; } void loop() override; - uint16_t get_status_register(); + uint8_t get_status_register(); uint16_t get_wiper_level(Mcp4461WiperIdx wiper); void set_wiper_level(Mcp4461WiperIdx wiper, uint16_t value); void update_wiper_level(Mcp4461WiperIdx wiper); From eb50c22b0a9bb20f03e1b2a5847c852a36180c8e Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:20:50 +0100 Subject: [PATCH 019/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index 32c24c56cc..7f051211bf 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -96,10 +96,10 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { WiperState reg_[8]; void begin_(); bool update_{false}; - bool disable_wiper_0{false}; - bool disable_wiper_1{false}; - bool disable_wiper_2{false}; - bool disable_wiper_3{false}; + bool wiper_0_disabled_{false}; + bool wiper_1_disabled_{false}; + bool wiper_2_disabled_{false}; + bool wiper_3_disabled_{false}; }; } // namespace mcp4461 } // namespace esphome From d704da024a18405dd1e95cff1f0a6f20d0f9c823 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:21:29 +0100 Subject: [PATCH 020/110] 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 2501032147..9408acd033 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -54,7 +54,7 @@ void Mcp4461Component::dump_config() { // get_status_register() will automatically check, if D8 bit (locked to 1) is 1 and bail out using error-routine otherwise uint8_t status_register_value; status_register_value = this->get_status_register(); - ESP_LOGCONFIG(TAG, "MCP4461 status register: , "D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WP: %" PRIu8 ", + ESP_LOGCONFIG(TAG, "MCP4461 status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WP: %" PRIu8 ", ((status_register_value >> 7) & 0x01), ((status_register_value >> 6) & 0x01), ((status_register_value >> 5) & 0x01), From 1a99e041508858774200edfd9a94b7b37c617ce0 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:23:40 +0100 Subject: [PATCH 021/110] 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 9408acd033..6cbf53657b 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -54,7 +54,7 @@ void Mcp4461Component::dump_config() { // get_status_register() will automatically check, if D8 bit (locked to 1) is 1 and bail out using error-routine otherwise uint8_t status_register_value; status_register_value = this->get_status_register(); - ESP_LOGCONFIG(TAG, "MCP4461 status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WP: %" PRIu8 ", + ESP_LOGCONFIG(TAG, "MCP4461 status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WP: %" PRIu8 "", ((status_register_value >> 7) & 0x01), ((status_register_value >> 6) & 0x01), ((status_register_value >> 5) & 0x01), From 71c03013080a5da7b2081a47ca3a96fbedca95d3 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:36:09 +0100 Subject: [PATCH 022/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index bb5c9ddbd9..6b9d8c730c 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -39,6 +39,7 @@ class Mcp4461Wiper : public output::FloatOutput { void decrease_wiper(); void enable_terminal(char terminal); void disable_terminal(char terminal); + void set_initial_value(float initial_value) { this->initial_value_ = initial_value; } protected: void write_state(float state) override; @@ -46,6 +47,7 @@ class Mcp4461Wiper : public output::FloatOutput { Mcp4461WiperIdx wiper_; bool enable_; uint16_t state_; + optional initial_value_; bool terminal_a_; bool terminal_b_; bool terminal_w_; From 43eb1ec95093f037d59fac450bda5956bc672f1a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:38:52 +0100 Subject: [PATCH 023/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index 36b249b5bc..66021e4428 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -1,7 +1,7 @@ import esphome.codegen as cg import esphome.config_validation as cv from esphome.components import output -from esphome.const import CONF_CHANNEL, CONF_ID +from esphome.const import CONF_CHANNEL, CONF_ID, CONF_INITIAL_VALUE from .. import Mcp4461Component, CONF_MCP4461_ID, mcp4461_ns DEPENDENCIES = ["mcp4461"] @@ -24,6 +24,7 @@ CONF_ENABLE = "enable" CONF_TERMINAL_A = "terminal_a" CONF_TERMINAL_B = "terminal_b" CONF_TERMINAL_W = "terminal_w" +CONF_INITIAL_VALUE = "initial_value" CONFIG_SCHEMA = output.FLOAT_OUTPUT_SCHEMA.extend( { @@ -34,6 +35,7 @@ CONFIG_SCHEMA = output.FLOAT_OUTPUT_SCHEMA.extend( cv.Optional(CONF_TERMINAL_A, default=True): cv.boolean, cv.Optional(CONF_TERMINAL_B, default=True): cv.boolean, cv.Optional(CONF_TERMINAL_W, default=True): cv.boolean, + cv.Optional(CONF_INITIAL_VALUE): cv.float_range(min=0.000, max=0.256) } ) @@ -48,5 +50,6 @@ async def to_code(config): config[CONF_TERMINAL_A], config[CONF_TERMINAL_B], config[CONF_TERMINAL_W], + config[CONF_INITIAL_VALUE], ) await output.register_output(var, config) From 19893654e729d611cf2058ed793c51a4aaaab09d Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:42:42 +0100 Subject: [PATCH 024/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 6b9d8c730c..6df20c588c 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -30,6 +30,12 @@ class Mcp4461Wiper : public output::FloatOutput { parent->disable_terminal(wiper, 'b'); if (!terminal_w && wiper_idx < 4) parent->disable_terminal(wiper, 'w'); + if (this->initial_value_.has_value()) { + // Use the value + parent->set_wiper_level(wiper, this->initial_value_); + } else { + ESP_LOGCONFIG(TAG, "No initial value set, retaining previous wiper level."); + } } uint16_t get_wiper_level(); void save_level(); From dfd649f6034d09c1467571c9f228d63a26174c92 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:45:08 +0100 Subject: [PATCH 025/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 6df20c588c..a0ebc0fcf9 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -30,12 +30,6 @@ class Mcp4461Wiper : public output::FloatOutput { parent->disable_terminal(wiper, 'b'); if (!terminal_w && wiper_idx < 4) parent->disable_terminal(wiper, 'w'); - if (this->initial_value_.has_value()) { - // Use the value - parent->set_wiper_level(wiper, this->initial_value_); - } else { - ESP_LOGCONFIG(TAG, "No initial value set, retaining previous wiper level."); - } } uint16_t get_wiper_level(); void save_level(); @@ -48,6 +42,7 @@ class Mcp4461Wiper : public output::FloatOutput { void set_initial_value(float initial_value) { this->initial_value_ = initial_value; } protected: + void setup() override; void write_state(float state) override; Mcp4461Component *parent_; Mcp4461WiperIdx wiper_; From 05ef501d4347ab2d195d64a72fff9e77cc34879c Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:50:12 +0100 Subject: [PATCH 026/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 7e63f9dc5a..7469d4f1b8 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -9,6 +9,16 @@ namespace mcp4461 { static const char *const TAG = "mcp4461.output"; +void Mcp4461Wiper::setup() { + if (this->initial_value_.has_value()) { + // Use the value + ESP_LOGCONFIG(TAG, "Setting initial value %.3f", %this->initial_value_); + this->_parent->set_wiper_level(wiper, this->initial_value_); + } else { + ESP_LOGCONFIG(TAG, "No initial value set, retaining previous wiper level."); + } +} + void Mcp4461Wiper::write_state(float state) { uint8_t wiper_idx = static_cast(this->wiper_); ESP_LOGV(TAG, "Got value %02f from frontend", state); From fa4028631b0c103b7f73ad6f44244e62d6f31d93 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:52:39 +0100 Subject: [PATCH 027/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index a0ebc0fcf9..39fb7c5264 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -11,7 +11,7 @@ namespace mcp4461 { class Mcp4461Wiper : public output::FloatOutput { public: Mcp4461Wiper(Mcp4461Component *parent, Mcp4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b, - bool terminal_w) + bool terminal_w, float initial_value = 1.0) : parent_(parent), wiper_(wiper), enable_(enable), @@ -42,7 +42,6 @@ class Mcp4461Wiper : public output::FloatOutput { void set_initial_value(float initial_value) { this->initial_value_ = initial_value; } protected: - void setup() override; void write_state(float state) override; Mcp4461Component *parent_; Mcp4461WiperIdx wiper_; From b35fa32236bdae0c434893fd6a8dcdc9645c8c4f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:53:04 +0100 Subject: [PATCH 028/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 7469d4f1b8..7e63f9dc5a 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -9,16 +9,6 @@ namespace mcp4461 { static const char *const TAG = "mcp4461.output"; -void Mcp4461Wiper::setup() { - if (this->initial_value_.has_value()) { - // Use the value - ESP_LOGCONFIG(TAG, "Setting initial value %.3f", %this->initial_value_); - this->_parent->set_wiper_level(wiper, this->initial_value_); - } else { - ESP_LOGCONFIG(TAG, "No initial value set, retaining previous wiper level."); - } -} - void Mcp4461Wiper::write_state(float state) { uint8_t wiper_idx = static_cast(this->wiper_); ESP_LOGV(TAG, "Got value %02f from frontend", state); From 04734bbfe76d37aa4664a88680a7886750d5461f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 14:57:02 +0100 Subject: [PATCH 029/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 39fb7c5264..acb6d17ab4 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -30,6 +30,14 @@ class Mcp4461Wiper : public output::FloatOutput { parent->disable_terminal(wiper, 'b'); if (!terminal_w && wiper_idx < 4) parent->disable_terminal(wiper, 'w'); + if (initial_value != 1.0 && initial_value >= 0.000 && initial_value <= 0.256) { + // Use the value + this->initial_value_ = initial_value; + ESP_LOGCONFIG(TAG, "Setting initial value %.3f", this->initial_value_); + this->_parent->set_wiper_level(wiper, this->initial_value_); + } else { + ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); + } } uint16_t get_wiper_level(); void save_level(); From 5e69d5ae1929bed6e2c8a3b29403ed2497909ff6 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:00:48 +0100 Subject: [PATCH 030/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index 66021e4428..b52ed22c2a 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -35,7 +35,7 @@ CONFIG_SCHEMA = output.FLOAT_OUTPUT_SCHEMA.extend( cv.Optional(CONF_TERMINAL_A, default=True): cv.boolean, cv.Optional(CONF_TERMINAL_B, default=True): cv.boolean, cv.Optional(CONF_TERMINAL_W, default=True): cv.boolean, - cv.Optional(CONF_INITIAL_VALUE): cv.float_range(min=0.000, max=0.256) + cv.Optional(CONF_INITIAL_VALUE): cv.float_range(min=0.000, max=0.256), } ) From a510c13d8333a63bd731615fe43fffe76bbf1c6d Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:02:40 +0100 Subject: [PATCH 031/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index b52ed22c2a..7124a91e77 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -53,3 +53,4 @@ async def to_code(config): config[CONF_INITIAL_VALUE], ) await output.register_output(var, config) + cg.add(var.set_initial_value(config[CONF_INITIAL_VALUE])) From dc13e233d60295d854354a8e5df8acca70902ee0 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:07:17 +0100 Subject: [PATCH 032/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index acb6d17ab4..3cf71f2409 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -17,7 +17,8 @@ class Mcp4461Wiper : public output::FloatOutput { enable_(enable), terminal_a_(terminal_a), terminal_b_(terminal_b), - terminal_w_(terminal_w) { + terminal_w_(terminal_w), + initial_value_(initial_value) { uint8_t wiper_idx = static_cast(wiper); // update wiper connection state if (!(this->enable_) && wiper_idx < 4) { @@ -30,9 +31,8 @@ class Mcp4461Wiper : public output::FloatOutput { parent->disable_terminal(wiper, 'b'); if (!terminal_w && wiper_idx < 4) parent->disable_terminal(wiper, 'w'); - if (initial_value != 1.0 && initial_value >= 0.000 && initial_value <= 0.256) { + if (this->initial_value_ >= 0.000 && this->initial_value_ <= 0.256) { // Use the value - this->initial_value_ = initial_value; ESP_LOGCONFIG(TAG, "Setting initial value %.3f", this->initial_value_); this->_parent->set_wiper_level(wiper, this->initial_value_); } else { From 569655d78eab1efb8e1715de9e729176c392bc9a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:07:50 +0100 Subject: [PATCH 033/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 3cf71f2409..7234bd4647 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -11,7 +11,7 @@ namespace mcp4461 { class Mcp4461Wiper : public output::FloatOutput { public: Mcp4461Wiper(Mcp4461Component *parent, Mcp4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b, - bool terminal_w, float initial_value = 1.0) + bool terminal_w, float initial_value) : parent_(parent), wiper_(wiper), enable_(enable), From 48fd8e240ee5b79d9cc3cc0f0d5ef14be37dcf0a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:11:37 +0100 Subject: [PATCH 034/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 7234bd4647..1e3faa50b2 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -31,13 +31,6 @@ class Mcp4461Wiper : public output::FloatOutput { parent->disable_terminal(wiper, 'b'); if (!terminal_w && wiper_idx < 4) parent->disable_terminal(wiper, 'w'); - if (this->initial_value_ >= 0.000 && this->initial_value_ <= 0.256) { - // Use the value - ESP_LOGCONFIG(TAG, "Setting initial value %.3f", this->initial_value_); - this->_parent->set_wiper_level(wiper, this->initial_value_); - } else { - ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); - } } uint16_t get_wiper_level(); void save_level(); From ef49839f37ef09a5df6df58caea142a8b2e5bf15 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:13:20 +0100 Subject: [PATCH 035/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 7e63f9dc5a..d7f45de6ac 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -25,6 +25,17 @@ void Mcp4461Wiper::write_state(float state) { this->parent_->set_wiper_level(this->wiper_, taps); } +void Mcp4461Wiper::set_initial_value(float initial_value) { + if (this->initial_value_ >= 0.000 && this->initial_value_ <= 0.256) { + this->initial_value_ = initial_value; + // Use the value + ESP_LOGCONFIG(TAG, "Setting initial value %.3f", this->initial_value_); + this->_parent->set_wiper_level(wiper, this->initial_value_); + } else { + ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); + } +} + uint16_t Mcp4461Wiper::get_wiper_level() { return this->parent_->get_wiper_level(this->wiper_); } void Mcp4461Wiper::save_level() { From 8974fb1adb6274b6b71252a5d7748f5607b499f6 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:14:10 +0100 Subject: [PATCH 036/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 1e3faa50b2..7baed7d825 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -11,14 +11,13 @@ namespace mcp4461 { class Mcp4461Wiper : public output::FloatOutput { public: Mcp4461Wiper(Mcp4461Component *parent, Mcp4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b, - bool terminal_w, float initial_value) + bool terminal_w) : parent_(parent), wiper_(wiper), enable_(enable), terminal_a_(terminal_a), terminal_b_(terminal_b), - terminal_w_(terminal_w), - initial_value_(initial_value) { + terminal_w_(terminal_w) { uint8_t wiper_idx = static_cast(wiper); // update wiper connection state if (!(this->enable_) && wiper_idx < 4) { @@ -40,7 +39,7 @@ class Mcp4461Wiper : public output::FloatOutput { void decrease_wiper(); void enable_terminal(char terminal); void disable_terminal(char terminal); - void set_initial_value(float initial_value) { this->initial_value_ = initial_value; } + void set_initial_value(float initial_value); protected: void write_state(float state) override; From 1fb172e28fcd04f66a50cffd432dc8496ccd72f0 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:16:14 +0100 Subject: [PATCH 037/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index 7124a91e77..f978730eb2 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -50,7 +50,6 @@ async def to_code(config): config[CONF_TERMINAL_A], config[CONF_TERMINAL_B], config[CONF_TERMINAL_W], - config[CONF_INITIAL_VALUE], ) await output.register_output(var, config) cg.add(var.set_initial_value(config[CONF_INITIAL_VALUE])) From 80804398d04374d7a25848c95727d6e7356c9c16 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:19:54 +0100 Subject: [PATCH 038/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index f978730eb2..b766abeab9 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -52,4 +52,4 @@ async def to_code(config): config[CONF_TERMINAL_W], ) await output.register_output(var, config) - cg.add(var.set_initial_value(config[CONF_INITIAL_VALUE])) + cg.add(var.set_initial_value(CONF_INITIAL_VALUE)) From ccc13520cd426c7bac82a90ee1f13934d0bccafa Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:22:56 +0100 Subject: [PATCH 039/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index d7f45de6ac..9557be6a68 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -30,7 +30,7 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { this->initial_value_ = initial_value; // Use the value ESP_LOGCONFIG(TAG, "Setting initial value %.3f", this->initial_value_); - this->_parent->set_wiper_level(wiper, this->initial_value_); + this->_parent->set_wiper_level(this->wiper_, this->initial_value_); } else { ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); } From 128a2390ec585481830d072dd0578cd5b7752ae0 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:25:24 +0100 Subject: [PATCH 040/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 9557be6a68..7bbbf71ea7 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -30,7 +30,7 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { this->initial_value_ = initial_value; // Use the value ESP_LOGCONFIG(TAG, "Setting initial value %.3f", this->initial_value_); - this->_parent->set_wiper_level(this->wiper_, this->initial_value_); + this->parent_->set_wiper_level(this->wiper_, this->initial_value_); } else { ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); } From dccfdfe2b53d8e6b0431fe3f90f24b3d754e41b3 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:28:49 +0100 Subject: [PATCH 041/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index b766abeab9..543bdf3289 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -52,4 +52,3 @@ async def to_code(config): config[CONF_TERMINAL_W], ) await output.register_output(var, config) - cg.add(var.set_initial_value(CONF_INITIAL_VALUE)) From 845250c7c59704b60eb5dd5936b1b2b6b4a8c0cd Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:33:47 +0100 Subject: [PATCH 042/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 7bbbf71ea7..13c106bc0c 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -26,10 +26,10 @@ void Mcp4461Wiper::write_state(float state) { } void Mcp4461Wiper::set_initial_value(float initial_value) { - if (this->initial_value_ >= 0.000 && this->initial_value_ <= 0.256) { - this->initial_value_ = initial_value; + if (initial_value >= 0.000 && initial_value <= 0.256) { + this->initial_value_ = static_cast(initial_value * 1000); // Use the value - ESP_LOGCONFIG(TAG, "Setting initial value %.3f", this->initial_value_); + ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", this->initial_value_); this->parent_->set_wiper_level(this->wiper_, this->initial_value_); } else { ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); From 5aea994e27bcf5c4e98411566d1fc10005375712 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:34:10 +0100 Subject: [PATCH 043/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 7baed7d825..ce59f065b3 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -47,7 +47,7 @@ class Mcp4461Wiper : public output::FloatOutput { Mcp4461WiperIdx wiper_; bool enable_; uint16_t state_; - optional initial_value_; + optional initial_value_; bool terminal_a_; bool terminal_b_; bool terminal_w_; From 4863da15fea4be314df4a8ca9888f3b0ed5f2bbf Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:38:55 +0100 Subject: [PATCH 044/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index ce59f065b3..7ebf10e197 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -47,7 +47,7 @@ class Mcp4461Wiper : public output::FloatOutput { Mcp4461WiperIdx wiper_; bool enable_; uint16_t state_; - optional initial_value_; + uint16_t initial_value_; bool terminal_a_; bool terminal_b_; bool terminal_w_; From 642089e6c75301414b3dd1d806de934a8caf32b5 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:56:59 +0100 Subject: [PATCH 045/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 7ebf10e197..3417447300 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -11,13 +11,14 @@ namespace mcp4461 { class Mcp4461Wiper : public output::FloatOutput { public: Mcp4461Wiper(Mcp4461Component *parent, Mcp4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b, - bool terminal_w) + bool terminal_w, float initial_value) : parent_(parent), wiper_(wiper), enable_(enable), terminal_a_(terminal_a), terminal_b_(terminal_b), - terminal_w_(terminal_w) { + terminal_w_(terminal_w), + initial_value_(initial_value) { uint8_t wiper_idx = static_cast(wiper); // update wiper connection state if (!(this->enable_) && wiper_idx < 4) { @@ -30,6 +31,7 @@ class Mcp4461Wiper : public output::FloatOutput { parent->disable_terminal(wiper, 'b'); if (!terminal_w && wiper_idx < 4) parent->disable_terminal(wiper, 'w'); + this->set_initial_value(initial_value); } uint16_t get_wiper_level(); void save_level(); @@ -47,7 +49,7 @@ class Mcp4461Wiper : public output::FloatOutput { Mcp4461WiperIdx wiper_; bool enable_; uint16_t state_; - uint16_t initial_value_; + float initial_value_; bool terminal_a_; bool terminal_b_; bool terminal_w_; From 71e3f3843b624a89454cbfe51c3a5afb7813722e Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:58:01 +0100 Subject: [PATCH 046/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 13c106bc0c..fca9efba2d 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -27,10 +27,10 @@ void Mcp4461Wiper::write_state(float state) { void Mcp4461Wiper::set_initial_value(float initial_value) { if (initial_value >= 0.000 && initial_value <= 0.256) { - this->initial_value_ = static_cast(initial_value * 1000); + uint16_t initial_level = static_cast(initial_value * 1000); // Use the value - ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", this->initial_value_); - this->parent_->set_wiper_level(this->wiper_, this->initial_value_); + ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", initial_level); + this->parent_->set_wiper_level(this->wiper_, initial_level); } else { ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); } From f905c81c31068fad834f03288c54a6e5ffe45c0a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 15:59:49 +0100 Subject: [PATCH 047/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index 543bdf3289..b52ed22c2a 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -50,5 +50,6 @@ async def to_code(config): config[CONF_TERMINAL_A], config[CONF_TERMINAL_B], config[CONF_TERMINAL_W], + config[CONF_INITIAL_VALUE], ) await output.register_output(var, config) From 68d0faddc4d4ce785a712e490c88e5f159ebcf76 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 16:03:59 +0100 Subject: [PATCH 048/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index b52ed22c2a..593a4cf4bf 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -24,7 +24,6 @@ CONF_ENABLE = "enable" CONF_TERMINAL_A = "terminal_a" CONF_TERMINAL_B = "terminal_b" CONF_TERMINAL_W = "terminal_w" -CONF_INITIAL_VALUE = "initial_value" CONFIG_SCHEMA = output.FLOAT_OUTPUT_SCHEMA.extend( { @@ -50,6 +49,6 @@ async def to_code(config): config[CONF_TERMINAL_A], config[CONF_TERMINAL_B], config[CONF_TERMINAL_W], - config[CONF_INITIAL_VALUE], ) await output.register_output(var, config) + var.set_initial_value(config[CONF_INITIAL_VALUE]) From 45c8e580d2855c575b4cba113acecb0b12e8920f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 16:05:55 +0100 Subject: [PATCH 049/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 3417447300..7baed7d825 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -11,14 +11,13 @@ namespace mcp4461 { class Mcp4461Wiper : public output::FloatOutput { public: Mcp4461Wiper(Mcp4461Component *parent, Mcp4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b, - bool terminal_w, float initial_value) + bool terminal_w) : parent_(parent), wiper_(wiper), enable_(enable), terminal_a_(terminal_a), terminal_b_(terminal_b), - terminal_w_(terminal_w), - initial_value_(initial_value) { + terminal_w_(terminal_w) { uint8_t wiper_idx = static_cast(wiper); // update wiper connection state if (!(this->enable_) && wiper_idx < 4) { @@ -31,7 +30,6 @@ class Mcp4461Wiper : public output::FloatOutput { parent->disable_terminal(wiper, 'b'); if (!terminal_w && wiper_idx < 4) parent->disable_terminal(wiper, 'w'); - this->set_initial_value(initial_value); } uint16_t get_wiper_level(); void save_level(); @@ -49,7 +47,7 @@ class Mcp4461Wiper : public output::FloatOutput { Mcp4461WiperIdx wiper_; bool enable_; uint16_t state_; - float initial_value_; + optional initial_value_; bool terminal_a_; bool terminal_b_; bool terminal_w_; From 223d1be3c46a98736f2012d05a56abe11dee74d9 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 16:11:37 +0100 Subject: [PATCH 050/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index 593a4cf4bf..d37bdb5910 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -51,4 +51,3 @@ async def to_code(config): config[CONF_TERMINAL_W], ) await output.register_output(var, config) - var.set_initial_value(config[CONF_INITIAL_VALUE]) From d2fe3c3f45e0034faf7e613e18ee7345b18fcc5f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 16:15:38 +0100 Subject: [PATCH 051/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index fca9efba2d..13c106bc0c 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -27,10 +27,10 @@ void Mcp4461Wiper::write_state(float state) { void Mcp4461Wiper::set_initial_value(float initial_value) { if (initial_value >= 0.000 && initial_value <= 0.256) { - uint16_t initial_level = static_cast(initial_value * 1000); + this->initial_value_ = static_cast(initial_value * 1000); // Use the value - ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", initial_level); - this->parent_->set_wiper_level(this->wiper_, initial_level); + ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", this->initial_value_); + this->parent_->set_wiper_level(this->wiper_, this->initial_value_); } else { ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); } From 0e58e0d78525ca6fc8cbbbe7485ee5c4a87ea2f3 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 16:16:01 +0100 Subject: [PATCH 052/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 7baed7d825..7ebf10e197 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -47,7 +47,7 @@ class Mcp4461Wiper : public output::FloatOutput { Mcp4461WiperIdx wiper_; bool enable_; uint16_t state_; - optional initial_value_; + uint16_t initial_value_; bool terminal_a_; bool terminal_b_; bool terminal_w_; From cf94a29163ca7c8633f665829a545e500f20ff4b Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 16:18:52 +0100 Subject: [PATCH 053/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index d37bdb5910..efa2bafb31 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -51,3 +51,4 @@ async def to_code(config): config[CONF_TERMINAL_W], ) await output.register_output(var, config) + cg.add(var.set_initial_value(config[CONF_INITIAL_VALUE])) From fc70ba1dd8b5cbdbba99cd5341b9097ba91c20e2 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 17:39:30 +0100 Subject: [PATCH 054/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index efa2bafb31..2124d67a55 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -51,4 +51,5 @@ async def to_code(config): config[CONF_TERMINAL_W], ) await output.register_output(var, config) - cg.add(var.set_initial_value(config[CONF_INITIAL_VALUE])) + if CONF_INITIAL_VALUE in config: + cg.add(var.set_initial_value(config[CONF_INITIAL_VALUE])) From c2e5066783f385f9e8235b78630c4eba5ddac748 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 17:41:32 +0100 Subject: [PATCH 055/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 7ebf10e197..ce59f065b3 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -47,7 +47,7 @@ class Mcp4461Wiper : public output::FloatOutput { Mcp4461WiperIdx wiper_; bool enable_; uint16_t state_; - uint16_t initial_value_; + optional initial_value_; bool terminal_a_; bool terminal_b_; bool terminal_w_; From e4083f4adcfae095abd64084f0729de371d97b9a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 17:47:43 +0100 Subject: [PATCH 056/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 13c106bc0c..06caa641f3 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -29,8 +29,8 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { if (initial_value >= 0.000 && initial_value <= 0.256) { this->initial_value_ = static_cast(initial_value * 1000); // Use the value - ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", this->initial_value_); - this->parent_->set_wiper_level(this->wiper_, this->initial_value_); + ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", *this->initial_value_); + this->parent_->set_wiper_level(this->wiper_, *this->initial_value_); } else { ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); } From 180edbd98c346474cf71a8fa152aa5a2e925b82d Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 17:59:13 +0100 Subject: [PATCH 057/110] 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 6cbf53657b..536c4679e5 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -54,7 +54,7 @@ void Mcp4461Component::dump_config() { // get_status_register() will automatically check, if D8 bit (locked to 1) is 1 and bail out using error-routine otherwise uint8_t status_register_value; status_register_value = this->get_status_register(); - ESP_LOGCONFIG(TAG, "MCP4461 status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WP: %" PRIu8 "", + ESP_LOGCONFIG(TAG, "MCP4461 status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WL0: %" PRIu8 ", R1: %" PRIu8 ", WP: %" PRIu8 "", ((status_register_value >> 7) & 0x01), ((status_register_value >> 6) & 0x01), ((status_register_value >> 5) & 0x01), From 3e5f4c847fea9aecbeff1e6d6f1358a56da4f31e Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 18:16:02 +0100 Subject: [PATCH 058/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 42 ++++++++++++-------------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 536c4679e5..7e33beb32e 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -38,6 +38,24 @@ void Mcp4461Component::begin_() { void Mcp4461Component::dump_config() { ESP_LOGCONFIG(TAG, "mcp4461:"); LOG_I2C_DEVICE(this); + // log wiper status + for (uint8_t i = 0; i < 8; ++i) { + // terminals only valid for volatile wipers 0-3 - enable/disable is terminal hw + // so also invalid for nonvolatile. For these, only print current level. + // reworked to be a one-line intentionally, as output would not be in order + if (i < 3) { + ESP_LOGCONFIG(TAG, " ├── Volatile wiper [%" PRIu8 "] level: %" PRIu16 ", Status: %s, HW: %s, A: %s, B: %s, W: %s", + i, + this->reg_[i].state, + ONOFF(this->reg_[i].terminal_hw), + ONOFF(this->reg_[i].terminal_a), + ONOFF(this->reg_[i].terminal_b), + ONOFF(this->reg_[i].terminal_w), + ONOFF(this->reg_[i].enabled)); + } else { + ESP_LOGCONFIG(TAG, " ├── Nonvolatile wiper [%" PRIu8 "] level: %" PRIu16 "", i, this->reg_[i].state); + } + } // log current device status register at start // from datasheet: // (1) means, bit is hard-locked to value 1 @@ -54,7 +72,7 @@ void Mcp4461Component::dump_config() { // get_status_register() will automatically check, if D8 bit (locked to 1) is 1 and bail out using error-routine otherwise uint8_t status_register_value; status_register_value = this->get_status_register(); - ESP_LOGCONFIG(TAG, "MCP4461 status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WL0: %" PRIu8 ", R1: %" PRIu8 ", WP: %" PRIu8 "", + ESP_LOGCONFIG(TAG, " └── Status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WL0: %" PRIu8 ", R1: %" PRIu8 ", WP: %" PRIu8 "", ((status_register_value >> 7) & 0x01), ((status_register_value >> 6) & 0x01), ((status_register_value >> 5) & 0x01), @@ -64,28 +82,6 @@ void Mcp4461Component::dump_config() { ((status_register_value >> 1) & 0x01), ((status_register_value >> 0) & 0x01) ); - for (uint8_t i = 0; i < 8; ++i) { - // terminals only valid for volatile wipers 0-3 - enable/disable is terminal hw - // so also invalid for nonvolatile. For these, only print current level. - // reworked to be a one-line intentionally, as output would not be in order - if (i < 4) { - ESP_LOGCONFIG(TAG, "Volatile wiper [%" PRIu8 "] level: %" PRIu16 ", Status: %s, HW: %s, A: %s, B: %s, W: %s", - i, - this->reg_[i].state, - ONOFF(this->reg_[i].terminal_hw), - ONOFF(this->reg_[i].terminal_a), - ONOFF(this->reg_[i].terminal_b), - ONOFF(this->reg_[i].terminal_w), - ONOFF(this->reg_[i].enabled)); - // ESP_LOGCONFIG(TAG, " ├── Status: %s", ONOFF(this->reg_[i].enabled)); - // ESP_LOGCONFIG(TAG, " ├── Terminal HW: %s", ONOFF(this->reg_[i].terminal_hw)); - // 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)); - } else { - ESP_LOGCONFIG(TAG, "Nonvolatile wiper [%" PRIu8 "] level: %" PRIu16 "", i, this->reg_[i].state); - } - } if (this->is_failed()) { ESP_LOGE(TAG, "Communication with mcp4461 failed!"); } From c536812dc20f6b3f38d213f3d838aed156dfa28d Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 18:26:07 +0100 Subject: [PATCH 059/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 7e33beb32e..98b5c64314 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -127,12 +127,14 @@ uint8_t Mcp4461Component::get_status_register() { return 0; } uint8_t msb = buf >> 8; - if (msb != 1) { - // D8 bit is hardlocked to 1 -> a status msb of 0 indicates device/communication issues, therefore mark component failed + uint8_t lsb; + lsb = static_cast(buf & 0x00ff); + if (msb != 1 || ((lsb >> 7) & 0x01)) != 1 || ((lsb >> 1) & 0x01) != 1) { + // D8, D7 and R1 bits are hardlocked to 1 -> a status msb bit 0 (bit 9 of status register) of 0 or lsb bit 1/7 = 0 indicate device/communication issues, therefore mark component failed this->mark_failed(); return 0; } - return static_cast(buf & 0x00ff); + return ; } bool Mcp4461Component::is_writing_() { return static_cast((this->get_status_register() >> 4) & 0x01); } From 2719941ee93da525cd26f5a3d2f3d5d32c6dde95 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 18:31:55 +0100 Subject: [PATCH 060/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 98b5c64314..1a645fa8f7 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -129,12 +129,12 @@ uint8_t Mcp4461Component::get_status_register() { uint8_t msb = buf >> 8; uint8_t lsb; lsb = static_cast(buf & 0x00ff); - if (msb != 1 || ((lsb >> 7) & 0x01)) != 1 || ((lsb >> 1) & 0x01) != 1) { + if (msb != 1 || ((lsb >> 7) & 0x01) != 1 || ((lsb >> 1) & 0x01) != 1) { // D8, D7 and R1 bits are hardlocked to 1 -> a status msb bit 0 (bit 9 of status register) of 0 or lsb bit 1/7 = 0 indicate device/communication issues, therefore mark component failed this->mark_failed(); return 0; } - return ; + return lsb; } bool Mcp4461Component::is_writing_() { return static_cast((this->get_status_register() >> 4) & 0x01); } From 4d982cdeb79243e4ee0eb18f3eee3fae9b1c582a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 18:35:21 +0100 Subject: [PATCH 061/110] 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 1a645fa8f7..456f26e811 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -69,7 +69,7 @@ void Mcp4461Component::dump_config() { // Bit 7+8 are referenced in datasheet as D7 + D8 and both locked to 1 // Default status register reading should be 0x182h or 386 decimal // "Default" means without any WiperLocks or WriteProtection enabled and EEPRom not active writing - // get_status_register() will automatically check, if D8 bit (locked to 1) is 1 and bail out using error-routine otherwise + // get_status_register() will automatically check, if D8, D7 & R1 bits (locked to 1) are 1 and bail out using error-routine otherwise uint8_t status_register_value; status_register_value = this->get_status_register(); ESP_LOGCONFIG(TAG, " └── Status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WL0: %" PRIu8 ", R1: %" PRIu8 ", WP: %" PRIu8 "", From d13f36a33460d6a5ba3c02ceec626847e759df9c Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 18:36:39 +0100 Subject: [PATCH 062/110] 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 456f26e811..4ac0caa56a 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -60,7 +60,7 @@ void Mcp4461Component::dump_config() { // from datasheet: // (1) means, bit is hard-locked to value 1 // Bit 0 is WP status (=>pin) - // Bit 1 is named "R-1"-pin in datasheet an declared "reserved" and forced to 1 + // Bit 1 is named "R-1"-pin in datasheet an declared "reserved" and forced/locked to 1 // Bit 2 is WiperLock-Status resistor-network 0 // Bit 3 is WiperLock-Status resistor-network 1 // Bit 4 is EEPROM-Write-Active-Status bit From f571bc0ecea6ce2d4e02ef0331e71a9a286ee7ce Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Wed, 5 Feb 2025 18:49:38 +0100 Subject: [PATCH 063/110] 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 4ac0caa56a..bf010d06d3 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -43,7 +43,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. // reworked to be a one-line intentionally, as output would not be in order - if (i < 3) { + if (i < 4) { ESP_LOGCONFIG(TAG, " ├── Volatile wiper [%" PRIu8 "] level: %" PRIu16 ", Status: %s, HW: %s, A: %s, B: %s, W: %s", i, this->reg_[i].state, From da71a8c16d2a920248ec2a3e7e3ff0e4b5c5ef22 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 09:16:43 +0100 Subject: [PATCH 064/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 06caa641f3..5511512e06 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -30,6 +30,7 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { this->initial_value_ = static_cast(initial_value * 1000); // Use the value ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", *this->initial_value_); + this->state_ = this->initial_value_; this->parent_->set_wiper_level(this->wiper_, *this->initial_value_); } else { ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); From d9154e3a29b776e5c5817f46509a32163d231a66 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 09:22:04 +0100 Subject: [PATCH 065/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 5511512e06..d38b991cbf 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -30,7 +30,7 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { this->initial_value_ = static_cast(initial_value * 1000); // Use the value ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", *this->initial_value_); - this->state_ = this->initial_value_; + this->state_ = *this->initial_value_; this->parent_->set_wiper_level(this->wiper_, *this->initial_value_); } else { ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); From 539649b7d302ed8a3fe0c3cda5cea683f2abcb25 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 09:22:45 +0100 Subject: [PATCH 066/110] Update mcp4461_output.cpp --- .../components/mcp4461/output/mcp4461_output.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index d38b991cbf..c2b7e447af 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -27,14 +27,14 @@ void Mcp4461Wiper::write_state(float state) { void Mcp4461Wiper::set_initial_value(float initial_value) { if (initial_value >= 0.000 && initial_value <= 0.256) { - this->initial_value_ = static_cast(initial_value * 1000); - // Use the value - ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", *this->initial_value_); - this->state_ = *this->initial_value_; - this->parent_->set_wiper_level(this->wiper_, *this->initial_value_); - } else { - ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); - } + this->initial_value_ = static_cast(initial_value * 1000); + // Use the value + ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", *this->initial_value_); + this->state_ = *this->initial_value_; + this->parent_->set_wiper_level(this->wiper_, *this->initial_value_); + } else { + ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); + } } uint16_t Mcp4461Wiper::get_wiper_level() { return this->parent_->get_wiper_level(this->wiper_); } From 71ac19566741747157853b93b3d66112a44fd02f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 09:31:38 +0100 Subject: [PATCH 067/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index c2b7e447af..b22e816c6b 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -33,7 +33,7 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { this->state_ = *this->initial_value_; this->parent_->set_wiper_level(this->wiper_, *this->initial_value_); } else { - ESP_LOGCONFIG(TAG, "No (valid) initial value set, retaining previous wiper level."); + ESP_LOGCONFIG(TAG, "Invalid initial value set, retaining previous wiper level."); } } From 3b42a519a425748dc28e53b5cb7627fc4e661c43 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 09:34:19 +0100 Subject: [PATCH 068/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index b22e816c6b..fe56f728aa 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -30,7 +30,7 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { this->initial_value_ = static_cast(initial_value * 1000); // Use the value ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", *this->initial_value_); - this->state_ = *this->initial_value_; + this->state_ = initial_value * 1000; this->parent_->set_wiper_level(this->wiper_, *this->initial_value_); } else { ESP_LOGCONFIG(TAG, "Invalid initial value set, retaining previous wiper level."); From 0d1ef53c74986e2307f68126a75cf2f4e538cf5b Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 12:30:00 +0100 Subject: [PATCH 069/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index 2124d67a55..be26f1007d 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -24,6 +24,7 @@ CONF_ENABLE = "enable" CONF_TERMINAL_A = "terminal_a" CONF_TERMINAL_B = "terminal_b" CONF_TERMINAL_W = "terminal_w" +CONF_INITIAL_VALUE = "initial_value" CONFIG_SCHEMA = output.FLOAT_OUTPUT_SCHEMA.extend( { From 7d09a94c34df0c6f15eda0a8c9bc7682c604b536 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 12:50:25 +0100 Subject: [PATCH 070/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index 7f051211bf..7a076ef4f9 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -91,6 +91,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { uint16_t read_wiper_level_(uint8_t wiper); void write_wiper_level_(uint8_t wiper, uint16_t value); void mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile = false); + uint32_t previous_write_exec_time; uint8_t calc_terminal_connector_byte_(Mcp4461TerminalIdx terminal_connector); WiperState reg_[8]; From e9d09d5ec97fbf23dcd1acdca027b8e0d88aaeef Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 12:50:47 +0100 Subject: [PATCH 071/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index 7a076ef4f9..9452157810 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -91,7 +91,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { uint16_t read_wiper_level_(uint8_t wiper); void write_wiper_level_(uint8_t wiper, uint16_t value); void mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile = false); - uint32_t previous_write_exec_time; + uint32_t previous_write_exec_time_; uint8_t calc_terminal_connector_byte_(Mcp4461TerminalIdx terminal_connector); WiperState reg_[8]; From 26e0fe2b3703bb4b01000f0e9ee1831b0dcbec5e Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 13:20:49 +0100 Subject: [PATCH 072/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 34 +++++++++++++++++++------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index bf010d06d3..c9c0ee5762 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -20,6 +20,7 @@ void Mcp4461Component::setup() { } void Mcp4461Component::begin_() { + this->previous_write_exec_time_ = 0; for (uint8_t i = 0; i < 8; i++) { if (this->reg_[i].enabled) { this->reg_[i].state = this->read_wiper_level_(i); @@ -137,8 +138,6 @@ uint8_t Mcp4461Component::get_status_register() { return lsb; } -bool Mcp4461Component::is_writing_() { return static_cast((this->get_status_register() >> 4) & 0x01); } - uint8_t Mcp4461Component::get_wiper_address_(uint8_t wiper) { uint8_t addr; bool nonvolatile = false; @@ -184,9 +183,8 @@ uint16_t Mcp4461Component::read_wiper_level_(uint8_t wiper) { reg |= this->get_wiper_address_(wiper); reg |= static_cast(Mcp4461Commands::READ); if (wiper > 3) { - while (this->is_writing_()) { - ESP_LOGVV(TAG, "delaying during eeprom write"); - yield(); + if(this->is_eeprom_busy_()) { + return 0; } } if (!this->read_byte_16(reg, &buf)) { @@ -404,6 +402,9 @@ uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EepromLocation location) { reg |= static_cast(Mcp4461EepromLocation::MCP4461_EEPROM_1) + (static_cast(location) * 0x10); reg |= static_cast(Mcp4461Commands::READ); uint16_t buf; + if(this->is_eeprom_busy_()) { + return 0; + } if (!this->read_byte_16(reg, &buf)) { this->status_set_warning(); ESP_LOGW(TAG, "Error fetching EEPRom location value"); @@ -424,6 +425,21 @@ void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t this->mcp4461_write_(addr, value, true); } +bool Mcp4461Component::is_writing_() { return static_cast((this->get_status_register() >> 4) & 0x01); } + +bool Mcp4461Component::is_eeprom_busy_() { + while (this->is_writing_() && this->previous_write_exec_time_ != 0) { + if ((millis() - this->previous_write_exec_time_) > EEPROM_WRITE_TIMEOUT_MS) { + this->previous_write_exec_time_ = millis(); + ESP_LOGE(TAG, "EEPROM write timeout exceeded (%" PRIu8 " ms), aborting read/write from/to nonvolatile wiper/eeprom", EEPROM_WRITE_TIMEOUT_MS); + return true; + } + ESP_LOGV(TAG, "Waiting while eeprom busy"); + yield(); + } + return false; +} + void Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile) { uint8_t reg = 0; if (data > 0xFF) { @@ -435,12 +451,12 @@ void Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolat reg |= addr; reg |= static_cast(Mcp4461Commands::WRITE); if (nonvolatile) { - while (this->is_writing_()) { - ESP_LOGV(TAG, "Waiting while eeprom busy"); - yield(); + if(this->is_eeprom_busy_()) { + return; } + this->previous_write_exec_time_ = millis(); + this->write_byte(reg, value_byte); } - this->write_byte(reg, value_byte); } } // namespace mcp4461 } // namespace esphome From 09a34d7ca79b656ce38e9da7d29d1dea3671825f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 13:23:49 +0100 Subject: [PATCH 073/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index 9452157810..c9a8bcf15f 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -87,16 +87,17 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { protected: friend class Mcp4461Wiper; bool is_writing_(); + bool is_eeprom_busy_(); uint8_t get_wiper_address_(uint8_t wiper); uint16_t read_wiper_level_(uint8_t wiper); void write_wiper_level_(uint8_t wiper, uint16_t value); void mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile = false); - uint32_t previous_write_exec_time_; uint8_t calc_terminal_connector_byte_(Mcp4461TerminalIdx terminal_connector); WiperState reg_[8]; void begin_(); bool update_{false}; + uint32_t previous_write_exec_time_; bool wiper_0_disabled_{false}; bool wiper_1_disabled_{false}; bool wiper_2_disabled_{false}; From 2184376d968b1f3a39ae0be8ca3be368f5e8043e Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 14:16:11 +0100 Subject: [PATCH 074/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index c9c0ee5762..f8779b3ab0 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -8,6 +8,7 @@ namespace esphome { namespace mcp4461 { static const char *const TAG = "mcp4461"; +constexpr uint8_t EEPROM_WRITE_TIMEOUT_MS = 10; void Mcp4461Component::setup() { ESP_LOGCONFIG(TAG, "Setting up mcp4461 (0x%02" PRIX8 ")...", this->address_); From c3c6cb2c94976708328fbbe699dfde8cd5f6310f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 14:35:26 +0100 Subject: [PATCH 075/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index c9a8bcf15f..9f70d87a2e 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -98,6 +98,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { void begin_(); bool update_{false}; uint32_t previous_write_exec_time_; + bool write_protected_{false}; bool wiper_0_disabled_{false}; bool wiper_1_disabled_{false}; bool wiper_2_disabled_{false}; From 3a5fb0096a803f7d9ad52895f4782d948dc9fd39 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 14:37:05 +0100 Subject: [PATCH 076/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index f8779b3ab0..b1274c18da 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -21,6 +21,7 @@ void Mcp4461Component::setup() { } void Mcp4461Component::begin_() { + // get WP & WL status this->previous_write_exec_time_ = 0; for (uint8_t i = 0; i < 8; i++) { if (this->reg_[i].enabled) { From 6f439850bc35dcb9deef510852f22dd617d3d244 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 14:46:41 +0100 Subject: [PATCH 077/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index b1274c18da..1d0b93d4ba 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -21,7 +21,8 @@ void Mcp4461Component::setup() { } void Mcp4461Component::begin_() { - // get WP & WL status + // save WP/WL status + this->set_write_protection_status_(); this->previous_write_exec_time_ = 0; for (uint8_t i = 0; i < 8; i++) { if (this->reg_[i].enabled) { @@ -38,6 +39,16 @@ void Mcp4461Component::begin_() { } } +void Mcp4461Component::set_write_protection_status_() { + uint8_t status_register_value; + status_register_value = this->get_status_register(); + this->write_protected_ = static_cast((status_register_value >> 0) & 0x01); + this->reg_[0].wiper_lock_active = static_cast((status_register_value >> 2) & 0x01); + this->reg_[1].wiper_lock_active = static_cast((status_register_value >> 3) & 0x01); + this->reg_[2].wiper_lock_active = static_cast((status_register_value >> 5) & 0x01); + this->reg_[3].wiper_lock_active = static_cast((status_register_value >> 6) & 0x01); +} + void Mcp4461Component::dump_config() { ESP_LOGCONFIG(TAG, "mcp4461:"); LOG_I2C_DEVICE(this); From 7a7d114d80feedf7d38a0082f9c4d644b4301dee Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 14:47:21 +0100 Subject: [PATCH 078/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index 9f70d87a2e..8da55b76af 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -13,6 +13,7 @@ struct WiperState { bool terminal_hw = true; uint16_t state = 0; bool enabled = true; + bool wiper_lock_active = false; }; enum class Mcp4461Defaults : uint8_t { WIPER_VALUE = 0x80 }; From 87b70410e767bc46ebecff2da8ffab9af630b1a3 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 14:56:34 +0100 Subject: [PATCH 079/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 1d0b93d4ba..b5c24ed593 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -218,6 +218,10 @@ void Mcp4461Component::update_wiper_level(Mcp4461WiperIdx wiper) { void Mcp4461Component::set_wiper_level(Mcp4461WiperIdx wiper, uint16_t value) { uint8_t wiper_idx = static_cast(wiper); + if (this->reg_[wiper_idx].wiper_lock_active) { + ESP_LOGW(TAG, "Ignoring request to set the state for wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); + return; + } if (value > 0x100) { ESP_LOGW(TAG, "ignoring invalid wiper level %" PRIu16 "!"); return; @@ -256,6 +260,10 @@ void Mcp4461Component::disable_wiper(Mcp4461WiperIdx wiper) { void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { uint8_t wiper_idx = static_cast(wiper); + if (this->reg_[wiper_idx].wiper_lock_active) { + ESP_LOGW(TAG, "Ignoring request to increase wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); + return; + } ESP_LOGV(TAG, "Increasing wiper %" PRIu8 "", wiper_idx); uint8_t reg = 0; uint8_t addr; @@ -268,6 +276,10 @@ void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { uint8_t wiper_idx = static_cast(wiper); + if (this->reg_[wiper_idx].wiper_lock_active) { + ESP_LOGW(TAG, "Ignoring request to decrease wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); + return; + } ESP_LOGV(TAG, "Decreasing wiper %" PRIu8 "", wiper_idx); uint8_t reg = 0; uint8_t addr; @@ -464,7 +476,11 @@ void Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolat reg |= addr; reg |= static_cast(Mcp4461Commands::WRITE); if (nonvolatile) { - if(this->is_eeprom_busy_()) { + if (this->write_protected_) { + ESP_LOGW(TAG, "Ignoring write to write protected chip"); + return; + } + if (this->is_eeprom_busy_()) { return; } this->previous_write_exec_time_ = millis(); From 2b78e902565743c553b10a0c59e171282649c720 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 14:58:26 +0100 Subject: [PATCH 080/110] 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 b5c24ed593..59956684a2 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -459,7 +459,7 @@ bool Mcp4461Component::is_eeprom_busy_() { ESP_LOGE(TAG, "EEPROM write timeout exceeded (%" PRIu8 " ms), aborting read/write from/to nonvolatile wiper/eeprom", EEPROM_WRITE_TIMEOUT_MS); return true; } - ESP_LOGV(TAG, "Waiting while eeprom busy"); + ESP_LOGV(TAG, "Waiting while eeprom is busy"); yield(); } return false; From c1ca965e22b7a8ab475ecbda18e414dff13aae6f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 15:00:35 +0100 Subject: [PATCH 081/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 59956684a2..5cc094e15b 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -465,7 +465,7 @@ bool Mcp4461Component::is_eeprom_busy_() { return false; } -void Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile) { +bool Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile) { uint8_t reg = 0; if (data > 0xFF) { reg = 1; @@ -484,7 +484,8 @@ void Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolat return; } this->previous_write_exec_time_ = millis(); - this->write_byte(reg, value_byte); + auto err = this->write_byte(reg, value_byte); + return err; } } } // namespace mcp4461 From 830e843a4a9c63aeb8916883f6a894ace1656f00 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 15:01:56 +0100 Subject: [PATCH 082/110] 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 5cc094e15b..7b6b5ad59d 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -485,7 +485,7 @@ bool Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolat } this->previous_write_exec_time_ = millis(); auto err = this->write_byte(reg, value_byte); - return err; + return err == i2c::ERROR_OK;; } } } // namespace mcp4461 From fc6b0a8ea30aaa8ba48c60d50afe7567af069c0f Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 15:04:06 +0100 Subject: [PATCH 083/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 7b6b5ad59d..65fb4ef619 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -447,7 +447,11 @@ void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t addr = 1; } addr |= static_cast(Mcp4461EepromLocation::MCP4461_EEPROM_1) + (static_cast(location) * 0x10); - this->mcp4461_write_(addr, value, true); + if (this->mcp4461_write_(addr, value, true)) { + this->clear_error_state_(); + } else { + this->set_error_state_(); + } } bool Mcp4461Component::is_writing_() { return static_cast((this->get_status_register() >> 4) & 0x01); } From a669296d0ec6f8b66c874e78904b25b5ecd08ba8 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 15:18:41 +0100 Subject: [PATCH 084/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 49 ++++++++++++++++++-------- 1 file changed, 35 insertions(+), 14 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 65fb4ef619..330fd925ae 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -136,7 +136,7 @@ uint8_t Mcp4461Component::get_status_register() { reg |= static_cast(Mcp4461Commands::READ); uint16_t buf; if (!this->read_byte_16(reg, &buf)) { - this->status_set_warning(); + this->mark_failed(); ESP_LOGE(TAG, "Error fetching status register value"); return 0; } @@ -148,6 +148,7 @@ uint8_t Mcp4461Component::get_status_register() { this->mark_failed(); return 0; } + this->clear_warning_state(); return lsb; } @@ -200,7 +201,9 @@ uint16_t Mcp4461Component::read_wiper_level_(uint8_t wiper) { return 0; } } - if (!this->read_byte_16(reg, &buf)) { + if (this->read_byte_16(reg, &buf)) { + this->clear_warning_state(); + } else { this->status_set_warning(); ESP_LOGW(TAG, "Error fetching %swiper %" PRIu8 " value", (wiper > 3) ? "nonvolatile " : "", wiper); return 0; @@ -236,12 +239,16 @@ void Mcp4461Component::set_wiper_level(Mcp4461WiperIdx wiper, uint16_t value) { } void Mcp4461Component::write_wiper_level_(uint8_t wiper, uint16_t value) { - uint8_t wiper_idx = static_cast(wiper); bool nonvolatile = false; - if (wiper_idx > 3) { + if (wiper > 3) { nonvolatile = true; } - this->mcp4461_write_(this->get_wiper_address_(wiper_idx), value, nonvolatile); + if (this->mcp4461_write_(this->get_wiper_address_(wiper), value, nonvolatile)) { + this->clear_warning_state(); + } else { + ESP_LOGW(TAG, "Error writing %swiper %" PRIu8 " level", (wiper > 3) ? "nonvolatile " : "", wiper); + this->status_set_warning(); + } } void Mcp4461Component::enable_wiper(Mcp4461WiperIdx wiper) { @@ -270,8 +277,12 @@ void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { addr = this->get_wiper_address_(wiper_idx); reg |= addr; reg |= static_cast(Mcp4461Commands::INCREMENT); - this->write(&this->address_, reg, sizeof(reg)); - this->reg_[wiper_idx].state++; + if (this->write(&this->address_, reg, sizeof(reg))) { + this->clear_warning_state(); + this->reg_[wiper_idx].state++; + } else { + this->status_set_warning(); + } } void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { @@ -286,8 +297,12 @@ void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { addr = this->get_wiper_address_(wiper_idx); reg |= addr; reg |= static_cast(Mcp4461Commands::DECREMENT); - this->write(&this->address_, reg, sizeof(reg)); - this->reg_[wiper_idx].state--; + if (this->write(&this->address_, reg, sizeof(reg))) { + this->clear_warning_state(); + this->reg_[wiper_idx].state--; + } else { + this->status_set_warning(); + } } uint8_t Mcp4461Component::calc_terminal_connector_byte_(Mcp4461TerminalIdx terminal_connector) { @@ -323,12 +338,14 @@ uint8_t Mcp4461Component::get_terminal_register(Mcp4461TerminalIdx terminal_conn } reg |= static_cast(Mcp4461Commands::READ); uint16_t buf; - if (!this->read_byte_16(reg, &buf)) { + if (this->read_byte_16(reg, &buf)) { + this->clear_warning_state(); + return static_cast(buf & 0x00ff); + } else { this->status_set_warning(); ESP_LOGW(TAG, "Error fetching terminal register value"); return 0; } - return static_cast(buf & 0x00ff); } void Mcp4461Component::update_terminal_register(Mcp4461TerminalIdx terminal_connector) { @@ -365,7 +382,11 @@ void Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connect ESP_LOGW(TAG, "Invalid terminal connector id %" PRIu8 " specified", static_cast(terminal_connector)); return; } - this->mcp4461_write_(addr, data); + if (this->mcp4461_write_(addr, data)) { + this->clear_warning_state(); + } else { + this->status_set_warning(); + } } void Mcp4461Component::enable_terminal(Mcp4461WiperIdx wiper, char terminal) { @@ -448,9 +469,9 @@ void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t } addr |= static_cast(Mcp4461EepromLocation::MCP4461_EEPROM_1) + (static_cast(location) * 0x10); if (this->mcp4461_write_(addr, value, true)) { - this->clear_error_state_(); + this->clear_warning_state(); } else { - this->set_error_state_(); + this->status_set_warning(); } } From 3271c33396e65bae658ba556c0812c7bdaf8d2fe Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 15:35:53 +0100 Subject: [PATCH 085/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 330fd925ae..7436aca58e 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -148,7 +148,7 @@ uint8_t Mcp4461Component::get_status_register() { this->mark_failed(); return 0; } - this->clear_warning_state(); + this->status_clear_warning(); return lsb; } @@ -202,7 +202,7 @@ uint16_t Mcp4461Component::read_wiper_level_(uint8_t wiper) { } } if (this->read_byte_16(reg, &buf)) { - this->clear_warning_state(); + this->status_clear_warning(); } else { this->status_set_warning(); ESP_LOGW(TAG, "Error fetching %swiper %" PRIu8 " value", (wiper > 3) ? "nonvolatile " : "", wiper); @@ -244,7 +244,7 @@ void Mcp4461Component::write_wiper_level_(uint8_t wiper, uint16_t value) { nonvolatile = true; } if (this->mcp4461_write_(this->get_wiper_address_(wiper), value, nonvolatile)) { - this->clear_warning_state(); + this->status_clear_warning(); } else { ESP_LOGW(TAG, "Error writing %swiper %" PRIu8 " level", (wiper > 3) ? "nonvolatile " : "", wiper); this->status_set_warning(); @@ -278,7 +278,7 @@ void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { reg |= addr; reg |= static_cast(Mcp4461Commands::INCREMENT); if (this->write(&this->address_, reg, sizeof(reg))) { - this->clear_warning_state(); + this->status_clear_warning(); this->reg_[wiper_idx].state++; } else { this->status_set_warning(); @@ -298,7 +298,7 @@ void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { reg |= addr; reg |= static_cast(Mcp4461Commands::DECREMENT); if (this->write(&this->address_, reg, sizeof(reg))) { - this->clear_warning_state(); + this->status_clear_warning(); this->reg_[wiper_idx].state--; } else { this->status_set_warning(); @@ -339,7 +339,7 @@ uint8_t Mcp4461Component::get_terminal_register(Mcp4461TerminalIdx terminal_conn reg |= static_cast(Mcp4461Commands::READ); uint16_t buf; if (this->read_byte_16(reg, &buf)) { - this->clear_warning_state(); + this->status_clear_warning(); return static_cast(buf & 0x00ff); } else { this->status_set_warning(); @@ -383,7 +383,7 @@ void Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connect return; } if (this->mcp4461_write_(addr, data)) { - this->clear_warning_state(); + this->status_clear_warning(); } else { this->status_set_warning(); } @@ -469,7 +469,7 @@ void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t } addr |= static_cast(Mcp4461EepromLocation::MCP4461_EEPROM_1) + (static_cast(location) * 0x10); if (this->mcp4461_write_(addr, value, true)) { - this->clear_warning_state(); + this->status_clear_warning(); } else { this->status_set_warning(); } From 9e28f253d83bf7c0cab8bcaa2c1c699e031252a7 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 15:48:48 +0100 Subject: [PATCH 086/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index 8da55b76af..d07958a478 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -87,6 +87,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { protected: friend class Mcp4461Wiper; + void set_write_protection_status_(); bool is_writing_(); bool is_eeprom_busy_(); uint8_t get_wiper_address_(uint8_t wiper); From 12420b2482d54edf5fa51cad12d1a7c1ab04950e Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 15:58:09 +0100 Subject: [PATCH 087/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 52 ++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 7436aca58e..a9c8df71d2 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -131,6 +131,10 @@ void Mcp4461Component::loop() { } uint8_t Mcp4461Component::get_status_register() { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Returning 0"); + return 0; + } uint8_t reg = 0; reg |= static_cast(Mcp4461Addresses::MCP4461_STATUS); reg |= static_cast(Mcp4461Commands::READ); @@ -183,6 +187,10 @@ uint8_t Mcp4461Component::get_wiper_address_(uint8_t wiper) { } uint16_t Mcp4461Component::get_wiper_level(Mcp4461WiperIdx wiper) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Returning 0"); + return 0; + } uint8_t wiper_idx = static_cast(wiper); if (!(this->reg_[wiper_idx].enabled)) { ESP_LOGW(TAG, "reading from disabled volatile wiper %" PRIu8 ", returning 0", wiper_idx); @@ -220,6 +228,10 @@ void Mcp4461Component::update_wiper_level(Mcp4461WiperIdx wiper) { } void Mcp4461Component::set_wiper_level(Mcp4461WiperIdx wiper, uint16_t value) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting write."); + return; + } uint8_t wiper_idx = static_cast(wiper); if (this->reg_[wiper_idx].wiper_lock_active) { ESP_LOGW(TAG, "Ignoring request to set the state for wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); @@ -252,6 +264,10 @@ void Mcp4461Component::write_wiper_level_(uint8_t wiper, uint16_t value) { } void Mcp4461Component::enable_wiper(Mcp4461WiperIdx wiper) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(wiper); ESP_LOGV(TAG, "Enabling wiper %" PRIu8, wiper_idx); this->reg_[wiper_idx].terminal_hw = true; @@ -259,6 +275,10 @@ void Mcp4461Component::enable_wiper(Mcp4461WiperIdx wiper) { } void Mcp4461Component::disable_wiper(Mcp4461WiperIdx wiper) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(wiper); ESP_LOGV(TAG, "Disabling wiper %" PRIu8, wiper_idx); this->reg_[wiper_idx].terminal_hw = false; @@ -266,6 +286,10 @@ void Mcp4461Component::disable_wiper(Mcp4461WiperIdx wiper) { } void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(wiper); if (this->reg_[wiper_idx].wiper_lock_active) { ESP_LOGW(TAG, "Ignoring request to increase wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); @@ -286,6 +310,10 @@ void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { } void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(wiper); if (this->reg_[wiper_idx].wiper_lock_active) { ESP_LOGW(TAG, "Ignoring request to decrease wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); @@ -330,6 +358,10 @@ uint8_t Mcp4461Component::calc_terminal_connector_byte_(Mcp4461TerminalIdx termi } uint8_t Mcp4461Component::get_terminal_register(Mcp4461TerminalIdx terminal_connector) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Returning 0"); + return 0; + } uint8_t reg = 0; if (static_cast(terminal_connector) == 0) { reg |= static_cast(Mcp4461Addresses::MCP4461_TCON0); @@ -373,6 +405,10 @@ void Mcp4461Component::update_terminal_register(Mcp4461TerminalIdx terminal_conn } void Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connector, uint8_t data) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t addr; if (static_cast(terminal_connector) == 0) { addr = static_cast(Mcp4461Addresses::MCP4461_TCON0); @@ -390,6 +426,10 @@ void Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connect } void Mcp4461Component::enable_terminal(Mcp4461WiperIdx wiper, char terminal) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(wiper); if (wiper_idx > 3) { return; @@ -417,6 +457,10 @@ void Mcp4461Component::enable_terminal(Mcp4461WiperIdx wiper, char terminal) { } void Mcp4461Component::disable_terminal(Mcp4461WiperIdx wiper, char terminal) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(wiper); if (wiper_idx > 3) { return; @@ -444,6 +488,10 @@ void Mcp4461Component::disable_terminal(Mcp4461WiperIdx wiper, char terminal) { } uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EepromLocation location) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Returning 0"); + return 0; + } uint8_t reg = 0; reg |= static_cast(Mcp4461EepromLocation::MCP4461_EEPROM_1) + (static_cast(location) * 0x10); reg |= static_cast(Mcp4461Commands::READ); @@ -460,6 +508,10 @@ uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EepromLocation location) { } void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t value) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t addr = 0; if (value > 511) { return; From a499f1e4463ec8e159ccb8f2426358a7c0981752 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 16:05:45 +0100 Subject: [PATCH 088/110] Update mcp4461_output.cpp --- .../mcp4461/output/mcp4461_output.cpp | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index fe56f728aa..9cfeae86fa 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -10,6 +10,10 @@ namespace mcp4461 { static const char *const TAG = "mcp4461.output"; void Mcp4461Wiper::write_state(float state) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(this->wiper_); ESP_LOGV(TAG, "Got value %02f from frontend", state); const float max_taps = 256.0; @@ -26,6 +30,10 @@ void Mcp4461Wiper::write_state(float state) { } void Mcp4461Wiper::set_initial_value(float initial_value) { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } if (initial_value >= 0.000 && initial_value <= 0.256) { this->initial_value_ = static_cast(initial_value * 1000); // Use the value @@ -40,17 +48,26 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { uint16_t Mcp4461Wiper::get_wiper_level() { return this->parent_->get_wiper_level(this->wiper_); } void Mcp4461Wiper::save_level() { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(this->wiper_); if (wiper_idx > 3) { ESP_LOGW(TAG, "Cannot save level for nonvolatile wiper %" PRIu8 " !", wiper_idx); return; } uint8_t nonvolatile_wiper_idx = wiper_idx + 4; + this->parent_->reg[nonvolatile_wiper_idx].state = this->parent_->reg_[wiper_idx].state; Mcp4461WiperIdx nonvolatile_wiper = static_cast(nonvolatile_wiper_idx); this->parent_->set_wiper_level(nonvolatile_wiper, this->state_); } void Mcp4461Wiper::enable_wiper() { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(this->wiper_); if (wiper_idx > 3) { ESP_LOGW(TAG, "Cannot enable nonvolatile wiper %" PRIu8 " !", wiper_idx); @@ -69,20 +86,30 @@ void Mcp4461Wiper::disable_wiper() { } void Mcp4461Wiper::increase_wiper() { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(this->wiper_); if (wiper_idx > 3) { ESP_LOGW(TAG, "Cannot increase nonvolatile wiper %" PRIu8 " !", wiper_idx); return; } + this->state_ = this->state_ + 1.0; this->parent_->increase_wiper(this->wiper_); } void Mcp4461Wiper::decrease_wiper() { + if (this->parent_->is_failed()) { + ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); + return; + } uint8_t wiper_idx = static_cast(this->wiper_); if (wiper_idx > 3) { ESP_LOGW(TAG, "Cannot decrease nonvolatile wiper %" PRIu8 " !", wiper_idx); return; } + this->state_ = this->state_ - 1.0; this->parent_->decrease_wiper(this->wiper_); } From d26aa89ffaaa4dbedacb96719d1b2a148e158515 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 16:14:51 +0100 Subject: [PATCH 089/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index d07958a478..cc1e770220 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -93,7 +93,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { uint8_t get_wiper_address_(uint8_t wiper); uint16_t read_wiper_level_(uint8_t wiper); void write_wiper_level_(uint8_t wiper, uint16_t value); - void mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile = false); + bool mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile = false); uint8_t calc_terminal_connector_byte_(Mcp4461TerminalIdx terminal_connector); WiperState reg_[8]; From 97d99b4bedfc9da25077312e1d002e8ce7e3fb20 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 16:15:28 +0100 Subject: [PATCH 090/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index a9c8df71d2..654a0b5fa9 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -131,7 +131,7 @@ void Mcp4461Component::loop() { } uint8_t Mcp4461Component::get_status_register() { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Returning 0"); return 0; } @@ -187,7 +187,7 @@ uint8_t Mcp4461Component::get_wiper_address_(uint8_t wiper) { } uint16_t Mcp4461Component::get_wiper_level(Mcp4461WiperIdx wiper) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Returning 0"); return 0; } @@ -228,7 +228,7 @@ void Mcp4461Component::update_wiper_level(Mcp4461WiperIdx wiper) { } void Mcp4461Component::set_wiper_level(Mcp4461WiperIdx wiper, uint16_t value) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting write."); return; } @@ -264,7 +264,7 @@ void Mcp4461Component::write_wiper_level_(uint8_t wiper, uint16_t value) { } void Mcp4461Component::enable_wiper(Mcp4461WiperIdx wiper) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; } @@ -275,7 +275,7 @@ void Mcp4461Component::enable_wiper(Mcp4461WiperIdx wiper) { } void Mcp4461Component::disable_wiper(Mcp4461WiperIdx wiper) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; } @@ -286,7 +286,7 @@ void Mcp4461Component::disable_wiper(Mcp4461WiperIdx wiper) { } void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; } @@ -310,7 +310,7 @@ void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { } void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; } @@ -358,7 +358,7 @@ uint8_t Mcp4461Component::calc_terminal_connector_byte_(Mcp4461TerminalIdx termi } uint8_t Mcp4461Component::get_terminal_register(Mcp4461TerminalIdx terminal_connector) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Returning 0"); return 0; } @@ -405,7 +405,7 @@ void Mcp4461Component::update_terminal_register(Mcp4461TerminalIdx terminal_conn } void Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connector, uint8_t data) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; } @@ -426,7 +426,7 @@ void Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connect } void Mcp4461Component::enable_terminal(Mcp4461WiperIdx wiper, char terminal) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; } @@ -457,7 +457,7 @@ void Mcp4461Component::enable_terminal(Mcp4461WiperIdx wiper, char terminal) { } void Mcp4461Component::disable_terminal(Mcp4461WiperIdx wiper, char terminal) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; } @@ -488,7 +488,7 @@ void Mcp4461Component::disable_terminal(Mcp4461WiperIdx wiper, char terminal) { } uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EepromLocation location) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Returning 0"); return 0; } @@ -508,7 +508,7 @@ uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EepromLocation location) { } void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t value) { - if (this->parent_->is_failed()) { + if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; } From 0037c60f5cc8584cba25ac603034caeb3354b983 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 16:18:10 +0100 Subject: [PATCH 091/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 9cfeae86fa..a6cd1b30e6 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -58,7 +58,7 @@ void Mcp4461Wiper::save_level() { return; } uint8_t nonvolatile_wiper_idx = wiper_idx + 4; - this->parent_->reg[nonvolatile_wiper_idx].state = this->parent_->reg_[wiper_idx].state; + this->parent_->reg_[nonvolatile_wiper_idx].state = this->parent_->reg_[wiper_idx].state; Mcp4461WiperIdx nonvolatile_wiper = static_cast(nonvolatile_wiper_idx); this->parent_->set_wiper_level(nonvolatile_wiper, this->state_); } From e5a41f0f78477268d3ac5d6e056b14a9bcd90eb6 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 16:22:32 +0100 Subject: [PATCH 092/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 654a0b5fa9..96f5099a66 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -555,10 +555,10 @@ bool Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolat if (nonvolatile) { if (this->write_protected_) { ESP_LOGW(TAG, "Ignoring write to write protected chip"); - return; + return false; } if (this->is_eeprom_busy_()) { - return; + return false; } this->previous_write_exec_time_ = millis(); auto err = this->write_byte(reg, value_byte); From 30d4cd089f4318d17f1b3f58c7e7f61eb62f5099 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 16:36:55 +0100 Subject: [PATCH 093/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 96f5099a66..743960800f 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -561,9 +561,9 @@ bool Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolat return false; } this->previous_write_exec_time_ = millis(); - auto err = this->write_byte(reg, value_byte); - return err == i2c::ERROR_OK;; } + auto err = this->write_byte(reg, value_byte); + return err == i2c::ERROR_OK; } } // namespace mcp4461 } // namespace esphome From ab85e4e28fad4ca5b14944c094f1aec078a598f3 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 16:47:40 +0100 Subject: [PATCH 094/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index a6cd1b30e6..01750d9341 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -35,10 +35,11 @@ void Mcp4461Wiper::set_initial_value(float initial_value) { return; } if (initial_value >= 0.000 && initial_value <= 0.256) { - this->initial_value_ = static_cast(initial_value * 1000); + float state = initial_value * 1000; + this->initial_value_ = static_cast(state); // Use the value ESP_LOGCONFIG(TAG, "Setting initial value %" PRIu16 "", *this->initial_value_); - this->state_ = initial_value * 1000; + this->state_ = state; this->parent_->set_wiper_level(this->wiper_, *this->initial_value_); } else { ESP_LOGCONFIG(TAG, "Invalid initial value set, retaining previous wiper level."); From 58bff218fff2e316ab8b794ada9cbf6f9977ebaf Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 17:00:02 +0100 Subject: [PATCH 095/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 743960800f..cda17e5cd3 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -291,6 +291,10 @@ void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { return; } uint8_t wiper_idx = static_cast(wiper); + if (!(this->reg_[wiper_idx].enabled)) { + ESP_LOGW(TAG, "increasing disabled volatile wiper %" PRIu8 " is prohibited", wiper_idx); + return; + } if (this->reg_[wiper_idx].wiper_lock_active) { ESP_LOGW(TAG, "Ignoring request to increase wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); return; @@ -315,6 +319,10 @@ void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { return; } uint8_t wiper_idx = static_cast(wiper); + if (!(this->reg_[wiper_idx].enabled)) { + ESP_LOGW(TAG, "decreasing disabled volatile wiper %" PRIu8 " is prohibited", wiper_idx); + return; + } if (this->reg_[wiper_idx].wiper_lock_active) { ESP_LOGW(TAG, "Ignoring request to decrease wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); return; From cb2e249d84f187d4b61bcee0eb31c68c5d0b2973 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 17:05:35 +0100 Subject: [PATCH 096/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index cda17e5cd3..e0e425a22d 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -102,6 +102,9 @@ void Mcp4461Component::dump_config() { } void Mcp4461Component::loop() { + if (status_has_warning()) { + this->get_status_register(); + } if (this->update_) { uint8_t i; for (i = 0; i < 8; i++) { From 9aac14890e1e78f422731057e426883f21eb0e90 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 17:20:28 +0100 Subject: [PATCH 097/110] 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 e0e425a22d..b4248939b6 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -261,7 +261,7 @@ void Mcp4461Component::write_wiper_level_(uint8_t wiper, uint16_t value) { if (this->mcp4461_write_(this->get_wiper_address_(wiper), value, nonvolatile)) { this->status_clear_warning(); } else { - ESP_LOGW(TAG, "Error writing %swiper %" PRIu8 " level", (wiper > 3) ? "nonvolatile " : "", wiper); + ESP_LOGW(TAG, "Error writing %swiper %" PRIu8 " level %" PRIu16 "", (wiper > 3) ? "nonvolatile " : "", wiper, value); this->status_set_warning(); } } From bcd11b98eed4453fa574031de2929a487035b3af Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 17:24:11 +0100 Subject: [PATCH 098/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index b4248939b6..58b1fcb214 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -573,8 +573,7 @@ bool Mcp4461Component::mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolat } this->previous_write_exec_time_ = millis(); } - auto err = this->write_byte(reg, value_byte); - return err == i2c::ERROR_OK; + return this->write_byte(reg, value_byte); } } // namespace mcp4461 } // namespace esphome From 9e77f031911221979ec42dde6b7e3c292283651a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 17:36:53 +0100 Subject: [PATCH 099/110] Update __init__.py --- esphome/components/mcp4461/output/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/mcp4461/output/__init__.py b/esphome/components/mcp4461/output/__init__.py index be26f1007d..ea15a7598a 100644 --- a/esphome/components/mcp4461/output/__init__.py +++ b/esphome/components/mcp4461/output/__init__.py @@ -52,5 +52,6 @@ async def to_code(config): config[CONF_TERMINAL_W], ) await output.register_output(var, config) + await cg.register_parented(var, config[CONF_MCP4461_ID]) if CONF_INITIAL_VALUE in config: cg.add(var.set_initial_value(config[CONF_INITIAL_VALUE])) From bdca602cd91c04319ec2268f311828c605942672 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:10:29 +0100 Subject: [PATCH 100/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 58b1fcb214..194dc61337 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -336,12 +336,12 @@ void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { addr = this->get_wiper_address_(wiper_idx); reg |= addr; reg |= static_cast(Mcp4461Commands::DECREMENT); - if (this->write(&this->address_, reg, sizeof(reg))) { - this->status_clear_warning(); - this->reg_[wiper_idx].state--; - } else { + if (!(this->write(&this->address_, reg, sizeof(reg)))) { this->status_set_warning(); + return false; } + this->reg_[wiper_idx].state--; + return true; } uint8_t Mcp4461Component::calc_terminal_connector_byte_(Mcp4461TerminalIdx terminal_connector) { @@ -382,7 +382,6 @@ uint8_t Mcp4461Component::get_terminal_register(Mcp4461TerminalIdx terminal_conn reg |= static_cast(Mcp4461Commands::READ); uint16_t buf; if (this->read_byte_16(reg, &buf)) { - this->status_clear_warning(); return static_cast(buf & 0x00ff); } else { this->status_set_warning(); @@ -429,11 +428,11 @@ void Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connect ESP_LOGW(TAG, "Invalid terminal connector id %" PRIu8 " specified", static_cast(terminal_connector)); return; } - if (this->mcp4461_write_(addr, data)) { - this->status_clear_warning(); - } else { + if (!(this->mcp4461_write_(addr, data))) { this->status_set_warning(); + return false; } + return true; } void Mcp4461Component::enable_terminal(Mcp4461WiperIdx wiper, char terminal) { @@ -460,7 +459,6 @@ void Mcp4461Component::enable_terminal(Mcp4461WiperIdx wiper, char terminal) { this->reg_[wiper_idx].terminal_w = true; break; default: - this->status_set_warning(); ESP_LOGW(TAG, "Unknown terminal %c specified", terminal); return; } @@ -491,7 +489,6 @@ void Mcp4461Component::disable_terminal(Mcp4461WiperIdx wiper, char terminal) { this->reg_[wiper_idx].terminal_w = false; break; default: - this->status_set_warning(); ESP_LOGW(TAG, "Unknown terminal %c specified", terminal); return; } @@ -531,11 +528,11 @@ void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t addr = 1; } addr |= static_cast(Mcp4461EepromLocation::MCP4461_EEPROM_1) + (static_cast(location) * 0x10); - if (this->mcp4461_write_(addr, value, true)) { - this->status_clear_warning(); - } else { + if (!(this->mcp4461_write_(addr, value, true))) { this->status_set_warning(); + return false; } + return true; } bool Mcp4461Component::is_writing_() { return static_cast((this->get_status_register() >> 4) & 0x01); } From 5978c9c0a86d1abf580d7c3766ab822877b04a81 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:21:29 +0100 Subject: [PATCH 101/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 194dc61337..6fba9a3064 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -212,9 +212,7 @@ uint16_t Mcp4461Component::read_wiper_level_(uint8_t wiper) { return 0; } } - if (this->read_byte_16(reg, &buf)) { - this->status_clear_warning(); - } else { + if (!(this->read_byte_16(reg, &buf))) { this->status_set_warning(); ESP_LOGW(TAG, "Error fetching %swiper %" PRIu8 " value", (wiper > 3) ? "nonvolatile " : "", wiper); return 0; @@ -258,9 +256,7 @@ void Mcp4461Component::write_wiper_level_(uint8_t wiper, uint16_t value) { if (wiper > 3) { nonvolatile = true; } - if (this->mcp4461_write_(this->get_wiper_address_(wiper), value, nonvolatile)) { - this->status_clear_warning(); - } else { + if (!(this->mcp4461_write_(this->get_wiper_address_(wiper), value, nonvolatile))) { ESP_LOGW(TAG, "Error writing %swiper %" PRIu8 " level %" PRIu16 "", (wiper > 3) ? "nonvolatile " : "", wiper, value); this->status_set_warning(); } @@ -288,7 +284,7 @@ void Mcp4461Component::disable_wiper(Mcp4461WiperIdx wiper) { this->update_ = true; } -void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { +bool Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; @@ -308,15 +304,16 @@ void Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { addr = this->get_wiper_address_(wiper_idx); reg |= addr; reg |= static_cast(Mcp4461Commands::INCREMENT); - if (this->write(&this->address_, reg, sizeof(reg))) { - this->status_clear_warning(); - this->reg_[wiper_idx].state++; - } else { + auto err = this->write(&this->address_, reg, sizeof(reg)); + if (err != i2c::ERROR_OK) { this->status_set_warning(); + return false; } + this->reg_[wiper_idx].state++; + return true; } -void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { +bool Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; @@ -336,7 +333,8 @@ void Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { addr = this->get_wiper_address_(wiper_idx); reg |= addr; reg |= static_cast(Mcp4461Commands::DECREMENT); - if (!(this->write(&this->address_, reg, sizeof(reg)))) { + auto err = this->write(&this->address_, reg, sizeof(reg)); + if (err != i2c::ERROR_OK) { this->status_set_warning(); return false; } From 5b92bedd1a8fb5d365f17f0c0fff767524cf1350 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:22:29 +0100 Subject: [PATCH 102/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index cc1e770220..b6202f4e34 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -81,7 +81,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { void disable_terminal(Mcp4461WiperIdx, char terminal); void update_terminal_register(Mcp4461TerminalIdx terminal_connector); uint8_t get_terminal_register(Mcp4461TerminalIdx terminal_connector); - void set_terminal_register(Mcp4461TerminalIdx terminal_connector, uint8_t data); + bool set_terminal_register(Mcp4461TerminalIdx terminal_connector, uint8_t data); uint16_t get_eeprom_value(Mcp4461EepromLocation location); void set_eeprom_value(Mcp4461EepromLocation location, uint16_t value); @@ -92,7 +92,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { bool is_eeprom_busy_(); uint8_t get_wiper_address_(uint8_t wiper); uint16_t read_wiper_level_(uint8_t wiper); - void write_wiper_level_(uint8_t wiper, uint16_t value); + bool write_wiper_level_(uint8_t wiper, uint16_t value); bool mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile = false); uint8_t calc_terminal_connector_byte_(Mcp4461TerminalIdx terminal_connector); From 0100bfc328bd92c6ff0a260b2b135ea429a30508 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:24:15 +0100 Subject: [PATCH 103/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 6fba9a3064..0e44609c84 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -412,7 +412,7 @@ void Mcp4461Component::update_terminal_register(Mcp4461TerminalIdx terminal_conn this->reg_[(wiper_index + 1)].terminal_hw = ((terminal_data >> 7) & 0x01); } -void Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connector, uint8_t data) { +bool Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connector, uint8_t data) { if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; @@ -513,7 +513,7 @@ uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EepromLocation location) { return buf; } -void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t value) { +bool Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t value) { if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); return; From 604eaa80afc39544643644085b0170856170b812 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:25:20 +0100 Subject: [PATCH 104/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index b6202f4e34..cd40a9187d 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -75,15 +75,15 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { void update_wiper_level(Mcp4461WiperIdx wiper); void enable_wiper(Mcp4461WiperIdx wiper); void disable_wiper(Mcp4461WiperIdx wiper); - void increase_wiper(Mcp4461WiperIdx wiper); - void decrease_wiper(Mcp4461WiperIdx wiper); + bool increase_wiper(Mcp4461WiperIdx wiper); + bool decrease_wiper(Mcp4461WiperIdx wiper); void enable_terminal(Mcp4461WiperIdx wiper, char terminal); void disable_terminal(Mcp4461WiperIdx, char terminal); void update_terminal_register(Mcp4461TerminalIdx terminal_connector); uint8_t get_terminal_register(Mcp4461TerminalIdx terminal_connector); bool set_terminal_register(Mcp4461TerminalIdx terminal_connector, uint8_t data); uint16_t get_eeprom_value(Mcp4461EepromLocation location); - void set_eeprom_value(Mcp4461EepromLocation location, uint16_t value); + bool set_eeprom_value(Mcp4461EepromLocation location, uint16_t value); protected: friend class Mcp4461Wiper; From 7ca80bf008b5e0e69d0ec7890014055f6cce62e7 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:28:11 +0100 Subject: [PATCH 105/110] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 01750d9341..f9c0032575 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -96,8 +96,9 @@ void Mcp4461Wiper::increase_wiper() { ESP_LOGW(TAG, "Cannot increase nonvolatile wiper %" PRIu8 " !", wiper_idx); return; } - this->state_ = this->state_ + 1.0; - this->parent_->increase_wiper(this->wiper_); + if (this->parent_->increase_wiper(this->wiper_)) { + this->state_ = this->state_ + 1.0; + } } void Mcp4461Wiper::decrease_wiper() { @@ -110,8 +111,9 @@ void Mcp4461Wiper::decrease_wiper() { ESP_LOGW(TAG, "Cannot decrease nonvolatile wiper %" PRIu8 " !", wiper_idx); return; } - this->state_ = this->state_ - 1.0; - this->parent_->decrease_wiper(this->wiper_); + if (this->parent_->decrease_wiper(this->wiper_)) { + this->state_ = this->state_ - 1.0; + } } void Mcp4461Wiper::enable_terminal(char terminal) { From 57d3d2e906cb9edcebb108fca40147cd244153f9 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:34:56 +0100 Subject: [PATCH 106/110] Update mcp4461.cpp --- esphome/components/mcp4461/mcp4461.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/esphome/components/mcp4461/mcp4461.cpp b/esphome/components/mcp4461/mcp4461.cpp index 0e44609c84..a19cf3ee0c 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -287,16 +287,16 @@ void Mcp4461Component::disable_wiper(Mcp4461WiperIdx wiper) { bool Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); - return; + return false; } uint8_t wiper_idx = static_cast(wiper); if (!(this->reg_[wiper_idx].enabled)) { ESP_LOGW(TAG, "increasing disabled volatile wiper %" PRIu8 " is prohibited", wiper_idx); - return; + return false; } if (this->reg_[wiper_idx].wiper_lock_active) { ESP_LOGW(TAG, "Ignoring request to increase wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); - return; + return false; } ESP_LOGV(TAG, "Increasing wiper %" PRIu8 "", wiper_idx); uint8_t reg = 0; @@ -316,16 +316,16 @@ bool Mcp4461Component::increase_wiper(Mcp4461WiperIdx wiper) { bool Mcp4461Component::decrease_wiper(Mcp4461WiperIdx wiper) { if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); - return; + return false; } uint8_t wiper_idx = static_cast(wiper); if (!(this->reg_[wiper_idx].enabled)) { ESP_LOGW(TAG, "decreasing disabled volatile wiper %" PRIu8 " is prohibited", wiper_idx); - return; + return false; } if (this->reg_[wiper_idx].wiper_lock_active) { ESP_LOGW(TAG, "Ignoring request to decrease wiper %" PRIu8 " as it is locked by WiperLock", wiper_idx); - return; + return false; } ESP_LOGV(TAG, "Decreasing wiper %" PRIu8 "", wiper_idx); uint8_t reg = 0; @@ -415,7 +415,7 @@ void Mcp4461Component::update_terminal_register(Mcp4461TerminalIdx terminal_conn bool Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connector, uint8_t data) { if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); - return; + return false; } uint8_t addr; if (static_cast(terminal_connector) == 0) { @@ -424,7 +424,7 @@ bool Mcp4461Component::set_terminal_register(Mcp4461TerminalIdx terminal_connect addr = static_cast(Mcp4461Addresses::MCP4461_TCON1); } else { ESP_LOGW(TAG, "Invalid terminal connector id %" PRIu8 " specified", static_cast(terminal_connector)); - return; + return false; } if (!(this->mcp4461_write_(addr, data))) { this->status_set_warning(); @@ -516,11 +516,11 @@ uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EepromLocation location) { bool Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t value) { if (this->is_failed()) { ESP_LOGW(TAG, "Parent MCP4461 component has failed! Aborting"); - return; + return false; } uint8_t addr = 0; if (value > 511) { - return; + return false; } if (value > 256) { addr = 1; From 35d56f68a7f8a907cc0babd95bf6aa77d820c2b5 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:35:50 +0100 Subject: [PATCH 107/110] Update mcp4461.h --- esphome/components/mcp4461/mcp4461.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/mcp4461.h b/esphome/components/mcp4461/mcp4461.h index cd40a9187d..a13f3751dc 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -92,7 +92,7 @@ class Mcp4461Component : public Component, public i2c::I2CDevice { bool is_eeprom_busy_(); uint8_t get_wiper_address_(uint8_t wiper); uint16_t read_wiper_level_(uint8_t wiper); - bool write_wiper_level_(uint8_t wiper, uint16_t value); + void write_wiper_level_(uint8_t wiper, uint16_t value); bool mcp4461_write_(uint8_t addr, uint16_t data, bool nonvolatile = false); uint8_t calc_terminal_connector_byte_(Mcp4461TerminalIdx terminal_connector); From c79aa866d35a7904ea0a73dae5c3fee565ac6e5a Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:39:21 +0100 Subject: [PATCH 108/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index ce59f065b3..4224dd7c44 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -8,7 +8,7 @@ namespace esphome { namespace mcp4461 { -class Mcp4461Wiper : public output::FloatOutput { +class Mcp4461Wiper : public output::FloatOutput, public Parented { public: Mcp4461Wiper(Mcp4461Component *parent, Mcp4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b, bool terminal_w) From f83412be662f54809acf1539f80afacec212a57b Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:40:14 +0100 Subject: [PATCH 109/110] Update mcp4461_output.h --- esphome/components/mcp4461/output/mcp4461_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.h b/esphome/components/mcp4461/output/mcp4461_output.h index 4224dd7c44..236df85a02 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.h +++ b/esphome/components/mcp4461/output/mcp4461_output.h @@ -8,7 +8,7 @@ namespace esphome { namespace mcp4461 { -class Mcp4461Wiper : public output::FloatOutput, public Parented { +class Mcp4461Wiper : public output::FloatOutput, public Parented { public: Mcp4461Wiper(Mcp4461Component *parent, Mcp4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b, bool terminal_w) From 21fbd762e074f5b3b969e8aff19593ba07c722a9 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Thu, 6 Feb 2025 18:47:55 +0100 Subject: [PATCH 110/110] 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 a19cf3ee0c..be6054fa5f 100644 --- a/esphome/components/mcp4461/mcp4461.cpp +++ b/esphome/components/mcp4461/mcp4461.cpp @@ -86,7 +86,7 @@ void Mcp4461Component::dump_config() { // get_status_register() will automatically check, if D8, D7 & R1 bits (locked to 1) are 1 and bail out using error-routine otherwise uint8_t status_register_value; status_register_value = this->get_status_register(); - ESP_LOGCONFIG(TAG, " └── Status register: , D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WL0: %" PRIu8 ", R1: %" PRIu8 ", WP: %" PRIu8 "", + ESP_LOGCONFIG(TAG, " └── Status register: D7: %" PRIu8 ", WL3: %" PRIu8 ", WL2: %" PRIu8 ", EEWA: %" PRIu8 ", WL1: %" PRIu8 ", WL0: %" PRIu8 ", R1: %" PRIu8 ", WP: %" PRIu8 "", ((status_register_value >> 7) & 0x01), ((status_register_value >> 6) & 0x01), ((status_register_value >> 5) & 0x01),