Skip to content

Instantly share code, notes, and snippets.

@yemreeke
Created November 19, 2020 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yemreeke/8290a50e48509d4adf263b5d0189a458 to your computer and use it in GitHub Desktop.
Save yemreeke/8290a50e48509d4adf263b5d0189a458 to your computer and use it in GitHub Desktop.
int Ledler[] = {2,3,4,5,6,7};
int potDeger;
void setup() {
for(int i=0;i<6;i++){
pinMode(Ledler[i],OUTPUT);
}
}
void loop() {
for(int i=0;i<6;i++){
potDeger = analogRead(A0);
digitalWrite(Ledler[i],HIGH);
delay(potDeger);
digitalWrite(Ledler[i],LOW);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment