mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-30 20:09:14 +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);
|
||
|
|
};
|