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