-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlsparsefile.h
35 lines (32 loc) · 1.13 KB
/
lsparsefile.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//*****************************************************************************
//
// Application Name - LightServer
// File Name - lsparsefile.h
// Application Version - 2.5.0
// Application Modify Date - 26th of December 2014
// Application Developer - Glenn Vassallo
// Application Contact - [email protected]
// Application Repository - https://github.com/remixed123/LightServer
//
// Further Details: - Please view the details in lsparsefile.c
//
//*****************************************************************************
#ifndef LSPARSEFILE_H_
#define LSPARSEFILE_H_
void setProtocolType(uint8_t icType);
void setBitCount(uint8_t icType);
char * createConfigJSON();
char * createStatusJSON();
char * createControlJSON();
int extractConfigJSON();
int extractControlJSON();
char * getControlFileName(int sceneNumber);
int createDefaultConfig();
int createDefaultControl(int sceneNumber);
int deleteConfig();
int deleteControl(int sceneNumber);
int loadConfig();
int loadControl(int sceneNumber);
int saveConfig();
int saveControl(int sceneNumber);
#endif /* LSPARSEFILE_H_ */