I thought it was a simple project using a program for the "ESP8266_control_ relay" and all I needed do was enter the SSID and Password. With the real password. When I did as told, when running the verify errors come up WiFiServer server (80); (Wifi server does not have a type)
Reading thru the documentation and looking for similar errors can not find an answer that works. The first lines of the code are copied below. My WiFi does use WPA2-PSK (AES) security in case that is an issue too.
Thought this would get my feet wet, but so far way over my head.
const char* ssid = "stargate"; // fill in here your router or wifi SSID
const char* password = "password"; // fill in here your router or wifi password
#define RELAY 1 // relay connected to GPIO0
WiFiServer server(80);
void setup()
{