mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
28 lines
345 B
C++
28 lines
345 B
C++
#pragma once
|
|
#include <Arduino.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 input();
|
|
extern void inputExecute();
|