Files
IoTManager/include/сlasses/sendJson.h

24 lines
320 B
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#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;