Skip to content

Instantly share code, notes, and snippets.

Tiny-Arduino-Led-Yakma-Uygulaması
void setup()
{
pinMode(0, OUTPUT);
pinMode(1, OUTPUT);
}
void loop()
{
digitalWrite(0, HIGH);
digitalWrite(1, HIGH);
delay(1000);
digitalWrite(0, LOW);
digitalWrite(1, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment