I followed this video from YouTube and got my first Arduino Uno -based circuit up and running. Thank you so much EEEnthusiast!
Here is the code:
int LED = 12;
void setup()
{
pinMode(LED, OUTPUT);
}
void loop()
{
digitalWrite(LED,HIGH);
delay(500);
digitalWrite(LED,LOW);
delay(500);
}
See my first unsoldered circuit
Ei kommentteja:
Lähetä kommentti