-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathDynamicData.h
50 lines (27 loc) · 921 Bytes
/
DynamicData.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
// DynamicData.h
#ifndef _DYNAMICDATA_h
#define _DYNAMICDATA_h
#include "Config.h"
#include "global.h"
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
// ------------------ Web dynamic data methods -------------------------------- //
void send_general_configuration_html();
void send_general_configuration_values_html();
void send_connection_state_values_html();
void send_network_configuration_values_html();
void send_information_values_html();
void send_NTP_configuration_values_html();
void send_network_configuration_html();
void send_NTP_configuration_html();
void restart_esp();
void send_wwwauth_configuration_values_html();
void send_wwwauth_configuration_html();
void send_update_firmware_values_html();
String GetMacAddress();
void sendTimeData();
void webSocketEvent(uint8_t num, WStype_t type, uint8_t * payload, size_t lenght);
#endif