semilimes mcu sdk
1.1.5
semilimes Software Development Kit for microcontrollers
Toggle main menu visibility
Main Page
Classes
Class List
Class Index
Class Members
All
a
d
e
f
g
l
m
p
s
v
~
Functions
a
d
g
s
~
Variables
Files
File List
▼
semilimes mcu sdk
►
Classes
▼
Files
▼
File List
▼
github
▼
semilimes_mcu_sdk
▼
src
►
account
►
communication
▼
components
dc_appointment.h
dc_ch_reference.h
dc_contact.h
dc_file.h
dc_form.h
dc_gauge.h
dc_html_text.h
dc_location.h
dc_simple_text.h
dc_tile_view.h
dc_tunnel_reference.h
dc_webview.h
fc_bucket_picker.h
fc_button_list.h
fc_color_picker.h
fc_contact_picker.h
fc_date_picker.h
fc_event_picker.h
fc_gauge.h
fc_hidden_value.h
fc_label.h
fc_location_picker.h
fc_multiple_choice.h
fc_nfc_reader.h
fc_qr_scanner.h
fc_single_choice.h
fc_slider.h
fc_switch.h
fc_text_box.h
fc_time_picker.h
defines.h
semilimes.h
•
All
Classes
Functions
Variables
Loading...
Searching...
No Matches
fc_switch.h
1
#ifndef _fc_switch_
2
#define _fc_switch_
3
4
#include "../defines.h"
5
6
class
FcSwitch
7
{
8
private
:
9
SmeJson json_data;
10
char
* json =
nullptr
;
11
12
public
:
13
// Function: ~FcSwitch
14
15
// distructor of the class, frees up the memory occupied by the array/s
16
17
// Prototype:
18
// ~FcSwitch()
19
20
// Parameters:
21
22
// Returns:
24
~FcSwitch
()
25
{
26
delete
[] json;
27
json =
nullptr
;
28
}
24
~FcSwitch
() {
…
}
29
30
// Function: FcSwitch.set
31
32
// An on/off switch
33
34
// Prototype:
35
// void FcSwitch::set(const char* refname,const char* title,bool value);
36
37
// Parameters:
41
42
// Returns:
44
45
void
set
(
const
char
* refname,
const
char
* title,
bool
value);
46
47
// Function: FcSwitch.get
48
49
// return the json script
50
51
// Prototype:
52
// void FcSwitch::get();
53
54
// Parameters:
55
56
// Returns:
58
char
*
get
();
59
};
6
class
FcSwitch
{
…
};
60
61
#endif
FcSwitch
Definition
fc_switch.h:7
FcSwitch::~FcSwitch
~FcSwitch()
Definition
fc_switch.h:24
FcSwitch::set
void set(const char *refname, const char *title, bool value)
Definition
fc_switch.cpp:18
FcSwitch::get
char * get()
Definition
fc_switch.cpp:42
github
semilimes_mcu_sdk
src
components
fc_switch.h
Generated by
1.12.0