13 lines
205 B
C++
13 lines
205 B
C++
#pragma once
|
|
|
|
class Reader
|
|
{
|
|
private:
|
|
unsigned long lastDebounceTime = 0;
|
|
bool lastButtonState = LOW;
|
|
bool buttonState = HIGH;
|
|
int lastPin;
|
|
|
|
public:
|
|
bool debounceRead(int buttonPin);
|
|
}; |