Skip to content

Instantly share code, notes, and snippets.

@astro648
Created August 16, 2021 01:10
Show Gist options
  • Save astro648/ab1439752fb563626c21744f69890543 to your computer and use it in GitHub Desktop.
Save astro648/ab1439752fb563626c21744f69890543 to your computer and use it in GitHub Desktop.
Arduino LED Light Output Pin Setup
void setup(){
//Let's say that the pin that the LED is connected to is 2. We'll set up the output for that one.
pinMode(4,OUTPUT);
}
void loop(){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment