-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebserver.h
66 lines (59 loc) · 2.17 KB
/
webserver.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// **********************************************************************************
// ESP8266 Teleinfo WEB Server routing Include file
// **********************************************************************************
// Creative Commons Attrib Share-Alike License
// You are free to use/extend this library but please abide with the CC-BY-SA license:
// Attribution-NonCommercial-ShareAlike 4.0 International License
// http://creativecommons.org/licenses/by-nc-sa/4.0/
//
// For any explanation about teleinfo ou use , see my blog
// http://hallard.me/category/tinfo
//
// This program works with the Wifinfo board
// see schematic here https://github.com/hallard/teleinfo/tree/master/Wifinfo
//
// Written by Charles-Henri Hallard (http://hallard.me)
//
// History : V1.00 2015-06-14 - First release
//
// All text above must be included in any redistribution.
//
// **********************************************************************************
#ifndef WEBSERVER_H
#define WEBSERVER_H
// Include main project include file
#include "Wifinfo.h"
// Web response max size
#define RESPONSE_BUFFER_SIZE 4096
// Exported variables/object instancied in main sketch
// ===================================================
extern char response[];
extern uint16_t response_idx;
extern int nb_reconnect;
extern unsigned int nb_reinit;
extern bool need_reinit;
extern bool first_info_call;
extern int SwitchState;
// Exported function instancied in webclient.cpp
// =============================================
extern String build_emoncms_json(void);
// declared exported function from webserver.cpp
// ===================================================
void handleTest(void);
void handleRoot(void);
void handleFormConfig(void) ;
void handleNotFound(void);
void tinfoJSONTable(void);
void getSysJSONData(String & r);
void sysJSONTable(void);
void emoncmsJSONTable(void); //Added by Doume
void getConfJSONData(String & r);
void confJSONTable(void);
void getSpiffsJSONData(String & r);
void spiffsJSONTable(void);
void sendJSON(void);
void wifiScanJSON(void);
void handleFactoryReset(void);
void handleReset(void);
bool validate_value_name(String name);
#endif