mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
24 lines
320 B
C++
24 lines
320 B
C++
#pragma once
|
||
#include "Global.h"
|
||
#include "сlasses/sendJsonWs.h"
|
||
|
||
class SendJson;
|
||
|
||
class SendJson : SendJsonWs {
|
||
public:
|
||
SendJson();
|
||
~SendJson();
|
||
|
||
void sendFile(String path, uint8_t num);
|
||
|
||
void loop();
|
||
|
||
uint8_t _num;
|
||
|
||
private:
|
||
File file;
|
||
String _path;
|
||
};
|
||
|
||
extern SendJson* mySendJson;
|