Skip to content

BUG Doesn't compile #23

@rosenhauer

Description

@rosenhauer

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingwontfixThis will not be worked on

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions