This commit is contained in:
Dmitry Borisenko
2021-10-05 19:21:52 +08:00
parent 74c31e30ea
commit 421f3fcb9a
348 changed files with 22008 additions and 0 deletions

27
include/items/vInput.h Normal file
View File

@@ -0,0 +1,27 @@
#ifdef EnableInput
#pragma once
#include <Arduino.h>
#include "Consts.h"
#include "Global.h"
class Input;
typedef std::vector<Input> MyInputVector;
class Input {
public:
Input(String key, String widget);
~Input();
void execute(String value);
private:
String _key;
};
extern MyInputVector* myInput;
extern void inputValue();
extern void inputExecute();
#endif