Files
Leo-led-truck/src/simpleled.h
Willem Oldemans 04b1235f1a firmware release 1.2
fixed MSboard, game class prep, power impr.
2021-03-29 11:10:57 +02:00

21 lines
365 B
C++

#ifndef SIMPLELEDH
#define SIMPLELEDH
#include "led.h"
#include "buttons.h"
#include "vector"
#include "game.h"
class c_simpleLed : public c_game
{
public:
c_simpleLed(e_game game): c_game{game} {}
void runGame(void);
void initGame(void);
};
void initSimpleLed(void);
void handleSimpleLed(bool newstate);
bool getStatusSimpleLed(void);
#endif //SIMPLELEDH