Code
Code
h>
const char WiFiPassword[] = "9004652173";
const char AP_NameChar[] = "EmbeddedGate" ;
WiFiServer server(80);
void setup()
{
pinMode(LED_Pin, OUTPUT);
} // void setup()
void loop()
{
client.flush();
client.print( header );
client.print( html_1 );
client.print( html_2 );
client.print( html_3 );
client.print( html_4);
delay(5);
// The client will actually be disconnected when the function returns and
'client' object is detroyed
} // void loop()