-
-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Labels
bugSomething isn't workingSomething isn't workingwontfixThis will not be worked onThis will not be worked on
Description
In line 54 of the cpp there is:
void FlowSensor::begin(void (*userFunc)(void), bool pullup = false)
this does not match the header file (line 38):
void begin(void (*userFunc)(void));
The header file needs to be updated to :
(38) --> void begin(void (*userFunc)(void), bool pullup = false);
and the cpp file
(54) --> void FlowSensor::begin(void (*userFunc)(void), bool pullup)
For proper use of the default value.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingwontfixThis will not be worked onThis will not be worked on