41 lines
639 B
C
41 lines
639 B
C
#ifndef __UTILS__
|
|
#define __UTILS__
|
|
|
|
#include <Arduino.h>
|
|
#include <ESP8266WiFi.h>
|
|
|
|
#define WiFiSSID "Info Board"
|
|
#define WiFipswd "cj160217"
|
|
|
|
// Variable Type Definition
|
|
typedef struct IPConfig {
|
|
IPAddress ip;
|
|
IPAddress gw;
|
|
IPAddress sn;
|
|
} IPConfig;
|
|
|
|
|
|
// Global Variable
|
|
extern String boardVersion;
|
|
extern String localIP;
|
|
extern IPConfig APStatic;
|
|
extern IPConfig STAStatic;
|
|
|
|
extern long follower;
|
|
extern long view;
|
|
extern long likes;
|
|
|
|
extern long dayView;
|
|
extern long weekView;
|
|
extern long monthView;
|
|
|
|
void initNtp();
|
|
String ntpTime();
|
|
|
|
void initData();
|
|
void getFollower();
|
|
void getViewAndLikes();
|
|
void getWebView();
|
|
|
|
#endif
|