-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLcdTcp.h
39 lines (30 loc) · 1.01 KB
/
LcdTcp.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
// Only modify this file to include
// - function definitions (prototypes)
// - include files
// - extern variable definitions
// In the appropriate section
#ifndef _wifi_H_
#define _wifi_H_
#include "Arduino.h"
//add your includes for the project wifi here
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <DNSServer.h>
#include "WiFiManager.h" //https://github.com/tzapu/WiFiManager
#include <Wire.h>
#include "LiquidCrystal_I2C.h"
#include <buildinfo.h> // This file is generated by makeEspAdruino automatically
#include "I2C_LCD_ADDR_CFG.h"
//end of add your includes here
#define d1printf printf
//add your function definitions for the project wifi here
extern void ParseEventFrameStream(WiFiClient* client);
extern void TcpServerInit(void);
extern void TcpServerProc(void);
extern void WifiConnectionInit(void);
extern void LcdInit(void);
extern void LcdShowStandby(void);
extern void LcdShowFetchIP(void);
extern LiquidCrystal_I2C lcd;
//Do not add code below this line
#endif /* _wifi_H_ */