Skip to content

Instantly share code, notes, and snippets.

@biskandar
Created October 16, 2012 09:06
Show Gist options
  • Save biskandar/3898192 to your computer and use it in GitHub Desktop.
Save biskandar/3898192 to your computer and use it in GitHub Desktop.
Build Webserver with Arduino Leonardo and WiFi Shield 2012101611
#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