1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-05 10:20:27 +01:00

Update mcp4461_output.h

This commit is contained in:
Oliver Kleinecke 2025-02-03 23:56:36 +01:00 committed by GitHub
parent 057be5a10a
commit ff63590107
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@ namespace mcp4461 {
class Mcp4461Wiper : public output::FloatOutput {
public:
Mcp4461Wiper(Mcp4461Component *parent, MCP4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b,
Mcp4461Wiper(Mcp4461Component *parent, Mcp4461WiperIdx wiper, bool enable, bool terminal_a, bool terminal_b,
bool terminal_w)
: parent_(parent),
wiper_(wiper),
@ -42,7 +42,7 @@ class Mcp4461Wiper : public output::FloatOutput {
protected:
void write_state(float state) override;
Mcp4461Component *parent_;
MCP4461WiperIdx wiper_;
Mcp4461WiperIdx wiper_;
bool enable_;
uint16_t state_;
bool terminal_a_;