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

31 lines
373 B
C++

#ifdef EnableOutput
#pragma once
#include <Arduino.h>
#include "Global.h"
class Output;
typedef std::vector<Output> MyOutputVector;
class Output {
public:
Output(String key);
~Output();
void execute(String value);
private:
String _key;
};
extern MyOutputVector* myOutput;
extern void outputValue();
extern void outputExecute();
#endif