mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
28 lines
375 B
C++
28 lines
375 B
C++
#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();
|