1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-03 09:20:29 +01:00

Update mcp4461_output.h

This commit is contained in:
Oliver Kleinecke 2025-02-04 09:50:41 +01:00 committed by GitHub
parent d82b93d57a
commit 12d50f9e8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,9 +18,10 @@ class Mcp4461Wiper : public output::FloatOutput {
terminal_a_(terminal_a),
terminal_b_(terminal_b),
terminal_w_(terminal_w) {
uint8_t wiper_idx = static_cast<uint8_t>(wiper);
// update wiper connection state
if (!enable && wiper < 4) {
parent->reg_[wiper].enabled = false;
if (!enable && wiper_idx < 4) {
parent->reg_[wiper_idx].enabled = false;
parent->disable_terminal(wiper, 'h');
}
if (!terminal_a && wiper < 4)