Created
June 18, 2012 17:40
-
-
Save jonmarkgo/2949616 to your computer and use it in GitHub Desktop.
Set up LED
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
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