Skip to content

Instantly share code, notes, and snippets.

@jonmarkgo
Created June 18, 2012 17:40
Show Gist options
  • Save jonmarkgo/2949616 to your computer and use it in GitHub Desktop.
Save jonmarkgo/2949616 to your computer and use it in GitHub Desktop.
Set up LED
const int ledPin = 13; //digital pin your LED is plugged into, I recommend 13 since its next to GND
WiFlyClient client;
void setup() {
//...
pinMode(ledPin, OUTPUT);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment