#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
/*
ESP8266 Blink
Blink the blue LED on the ESP8266 module
*/
#define LED 1 //Define blinking LED pin
void setup() {
Serial.begin(115200);
Serial.println();
Serial.println("Hello World");
pinMode(LED, OUTPUT); // Initialize the LED pin as an output
// Serial.print("write this");
WiFi.mode(WIFI_AP);
WiFi.softAP("THE_TEST");
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED, LOW); // Turn the LED on (Note that LOW is the voltage level)
delay(1000); // Wait for a second
digitalWrite(LED, HIGH); // Turn the LED off by making the voltage HIGH
delay(1000); // Wait for two seconds
}