16 lines
263 B
C
16 lines
263 B
C
//
|
|
// Some settings
|
|
//
|
|
|
|
#ifndef PROJGLOBALS_H
|
|
#define PROJGLOBALS_H
|
|
|
|
#include <ESP8266WebServer.h>
|
|
|
|
#include "WiFiConfiguration.h"
|
|
|
|
extern bool isStationMode;
|
|
extern ESP8266WebServer server;
|
|
extern ConfigManager wifiConfig;
|
|
|
|
#endif // PROJGLOBALS_H
|