Reference.WiFiServer History
Hide minor edits - Show changes to output
November 22, 2011, at 05:17 PM
by Scott Fitzgerald -
Changed line 28 from:
char pass[] = "myPass"; // your network password
to:
char pass[] = "myPassword"; // your network password
November 22, 2011, at 05:03 PM
by Scott Fitzgerald -
Added lines 1-59:
[[WiFi]] : ''Server'' class
!!WiFiServer()
!!!!Description
Creates a server that listens for incoming connections on the specified port.
!!!!Syntax
Server(port);
!!!!Parameters
'''port''': the port to listen on (int)
!!!!Returns
None
!!!!Example
(:source lang=arduino tabwidth=4:)
#include <SPI.h>
#include <WiFi.h>
char ssid[] = "myNetwork"; // your network SSID (name)
char pass[] = "myPass"; // 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() {
}
(:sourceend:)