switch-controller: init empty class

This class is meant for controlling switch behaviour, such as
button hold etc
This commit is contained in:
Vasily Davydov
2022-10-17 08:55:48 +03:00
parent ff28b487bb
commit c0c85df36f
5 changed files with 380 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/*
* SwitchController.cpp
*
* Created on: Oct 17, 2022
* Author: tylen
*/
#include <SwitchController.h>
SwitchController::SwitchController (DigitalIoPin *button, Timer *timer,
StateHandler *handler)
{
// TODO Auto-generated constructor stub
}
SwitchController::~SwitchController ()
{
// TODO Auto-generated destructor stub
}
void
SwitchController::listen ()
{
}