firmware recovery 1.3RC

This commit is contained in:
2021-06-14 08:19:45 +02:00
parent d32deb73b5
commit f4e23386ef
15 changed files with 237 additions and 203 deletions

View File

@@ -1,18 +1,16 @@
#ifndef SIMPLELEDH
#define SIMPLELEDH
#pragma once
#include "led.h"
#include "buttons.h"
#include "vector"
#include "game.h"
class c_simpleLed : public c_game
{
std::vector<c_button *> *buttonlist;
public:
c_simpleLed(): c_game{simpleled} {}
c_simpleLed(e_ledcolor gamecolor): c_game{simpleled, gamecolor} {}
void runGame(void);
void initGame(void);
bool initGame(void);
void resetGame(void);
};
#endif //SIMPLELEDH