Files
IoTManager/include/items/vInput.h
Dmitry Borisenko 421f3fcb9a recovery
2021-10-05 19:21:52 +08:00

28 lines
389 B
C++

#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