semilimes mcu sdk 1.1.5
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
dc_simple_text.h
1#ifndef _dc_simple_text_
2#define _dc_simple_text_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char* json = nullptr;
11
12public:
13// Function: ~DcSimpleText
14
15// distructor of the class, frees up the memory occupied by the array/s
16
17// Prototype:
18// ~DcSimpleText()
19
20// Parameters:
21
22// Returns:
25 {
26 delete[] json;
27 json = nullptr;
28 }
29
30// Function: DcSimpleText.set
31
32// A simple text message
33
34// Prototype:
35// void DcSimpleText::set(const char* text);
36
37// Parameters:
39
40// Returns:
42 void set(const char* text);
43
44// Function: DcSimpleText.get
45
46// return the json script
47
48// Prototype:
49// void DcSimpleText::get();
50
51// Parameters:
52
53// Returns:
55 char* get();
56};
57
58#endif
Definition dc_simple_text.h:7
void set(const char *text)
Definition dc_simple_text.cpp:16
~DcSimpleText()
Definition dc_simple_text.h:24
char * get()
Definition dc_simple_text.cpp:38