Home Page | Language Reference (extended) | SD Reference | Libraries | Comparison | Changes
WiFi : Server class
Creates a server that listens for incoming connections on the specified port.
Server(port);
port: the port to listen on (int)
None
#include <SPI.h>
#include <WiFi.h>
char ssid[
]
=
"myNetwork"
; // your network SSID (name)
char pass[
]
=
"myPassword"
; // your network password
int status = WL_IDLE_STATUS;
WiFiServer server(
80
)
;
void
setup
(
)
{
// initialize serial:
Serial.begin
(
9600
)
;
Serial.println
(
"Attempting to connect to WPA network..."
)
;
Serial.print
(
"SSID: "
)
;
Serial.println
(ssid)
;
status = WiFi.begin
(ssid, pass)
;
if
( status != WL_CONNECTED)
{
Serial.println
(
"Couldn't get a wifi connection"
)
;
while
(
true
)
;
}
else
{
server.begin
(
)
;
Serial.print
(
"Connected to wifi. My address:"
)
;
IPAddress myAddress = WiFi.localIP
(
)
;
Serial.println
(myAddress)
;
}
}
void
loop
(
)
{
}
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.