mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
убрал русские символы
This commit is contained in:
26
include/classes/sendJson.h
Normal file
26
include/classes/sendJson.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#pragma once
|
||||
#include "Global.h"
|
||||
|
||||
class SendJson;
|
||||
|
||||
class SendJson {
|
||||
public:
|
||||
SendJson();
|
||||
~SendJson();
|
||||
|
||||
void sendFile(String path, uint8_t num);
|
||||
|
||||
void loop();
|
||||
|
||||
void sendWs(String& jsonArrayElement);
|
||||
|
||||
void sendMqtt(String& jsonArrayElement);
|
||||
|
||||
uint8_t _num;
|
||||
|
||||
private:
|
||||
File file;
|
||||
String _path;
|
||||
};
|
||||
|
||||
extern SendJson* mySendJson;
|
||||
Reference in New Issue
Block a user