torstai 11. joulukuuta 2014

My first unsoldered circuit with Arduino Uno

As a child at school long time ago I hated soldering. It was so hard to make those simple circuit boards work. Now those days are over! No soldering is needed anymore!

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