| 12345678910111213141516171819202122232425262728293031 | #ifndef _WS_WIFI_H_#define _WS_WIFI_H_#include <WiFi.h>#include <WebServer.h> #include <WiFiClient.h>#include <WiFiAP.h>#include "stdio.h"#include "WS_GPIO.h"#include "WS_Information.h"#define WIFI_Mode            3extern bool Relay_Flag[6];       // Relay current status flagextern void Relay_Analysis(uint8_t *buf,uint8_t Mode_Flag);void handleRoot();void handleGetData();void handleSwitch(uint8_t ledNumber);void handleSwitch1();void handleSwitch2();void handleSwitch3();void handleSwitch4();void handleSwitch5();void handleSwitch6();void handleSwitch7();void handleSwitch8();void WIFI_Init();void WIFI_Loop();#endif
 |