1
0
2020-07-12 00:53:38 +01:00

16 lines
313 B
C++

#ifndef LIGHTSWITCH_BUTTON_H_
#define LIGHTSWITCH_BUTTON_H_
namespace lightswitch
{
class Button
{
public:
Button(unsigned short int pin);
void Setup();
unsigned short int pin_;
volatile bool pressed_;
};
} // namespace lightswitch
#endif // LIGHTSWITCH_BUTTON_H_