Created
October 16, 2012 09:06
-
-
Save biskandar/3898192 to your computer and use it in GitHub Desktop.
Build Webserver with Arduino Leonardo and WiFi Shield 2012101611
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SPI.h> | |
#include <WiFi.h> | |
char ssid[] = "biskandar" ; | |
char pass[] = "*******" ; | |
int status = WL_IDLE_STATUS ; | |
// build web server with listener port 80 | |
WiFiServer server( 80 ) ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment