mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-27 22:52:19 +03:00
first
This commit is contained in:
27
include/items/vInOutput.h
Normal file
27
include/items/vInOutput.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#pragma once
|
||||
#include <Arduino.h>
|
||||
|
||||
#include "Global.h"
|
||||
|
||||
class InOutput;
|
||||
|
||||
typedef std::vector<InOutput> MyInOutputVector;
|
||||
|
||||
class InOutput {
|
||||
public:
|
||||
|
||||
InOutput(String key, String widget);
|
||||
~InOutput();
|
||||
|
||||
void execute(String value);
|
||||
|
||||
private:
|
||||
|
||||
String _key;
|
||||
|
||||
};
|
||||
|
||||
extern MyInOutputVector* myInOutput;
|
||||
|
||||
extern void inOutput();
|
||||
extern void inOutputExecute();
|
||||
Reference in New Issue
Block a user