mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-29 15:42:20 +03:00
13 lines
180 B
C++
13 lines
180 B
C++
#pragma once
|
|
#include "Global.h"
|
|
|
|
class SendJsonWs;
|
|
|
|
class SendJsonWs {
|
|
public:
|
|
SendJsonWs();
|
|
~SendJsonWs();
|
|
|
|
void send(String& jsonArrayElement, uint8_t& _num);
|
|
};
|