From eb98866bdee2905c5da703ba80696f21fef3b146 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Mon, 3 Feb 2025 12:12:37 +0100 Subject: [PATCH] Update esphome/components/mcp4461/mcp4461.h Co-authored-by: Djordje Mandic <6750655+DjordjeMandic@users.noreply.github.com> --- 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 f2b49e2983..cea9eb226c 100644 --- a/esphome/components/mcp4461/mcp4461.h +++ b/esphome/components/mcp4461/mcp4461.h @@ -94,11 +94,11 @@ 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 update_{false}; + bool wiper_0_enabled_{true}; + bool wiper_1_enabled_{true}; + bool wiper_2_enabled_{true}; + bool wiper_3_enabled_{true}; }; } // namespace mcp4461 } // namespace esphome