mirror of
https://github.com/esphome/esphome.git
synced 2025-04-04 09:50:29 +01:00
Update mcp4461_output.h
This commit is contained in:
parent
05ef501d43
commit
fa4028631b
@ -11,7 +11,7 @@ namespace mcp4461 {
|
|||||||
class Mcp4461Wiper : public output::FloatOutput {
|
class Mcp4461Wiper : public output::FloatOutput {
|
||||||
public:
|
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)
|
bool terminal_w, float initial_value = 1.0)
|
||||||
: parent_(parent),
|
: parent_(parent),
|
||||||
wiper_(wiper),
|
wiper_(wiper),
|
||||||
enable_(enable),
|
enable_(enable),
|
||||||
@ -42,7 +42,6 @@ class Mcp4461Wiper : public output::FloatOutput {
|
|||||||
void set_initial_value(float initial_value) { this->initial_value_ = initial_value; }
|
void set_initial_value(float initial_value) { this->initial_value_ = initial_value; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void setup() override;
|
|
||||||
void write_state(float state) override;
|
void write_state(float state) override;
|
||||||
Mcp4461Component *parent_;
|
Mcp4461Component *parent_;
|
||||||
Mcp4461WiperIdx wiper_;
|
Mcp4461WiperIdx wiper_;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user