Whassaaaaaaaa,
this is my first blog so I'll tell you what I'm going to blog about.
Let's start at the beginning. At school I asked a teacher if he I could take part of a technical contest. He send me to a TOA (a technical teacher assistant). The TOA, Jonas sayd that the contest was not been held anymore. Later he sayd he had some technical projects for us (me and a friend who joined) if we ware intrested. So after a year of these small projects he bought a Arduino. Jonas sayd we could practice and try things with it. So I started studying the arduino codes while my friend, Martijn practiced with soldering. After some studying an a few free periods further I wrote my very first arduino code, making a LED blink.
int ledPin = 13;
void setup()
{
pinMode(ledPin, OUTPUT);
}
void loop()
{
digitalWrite (ledPin, HIGH);
delay (1000);
digitalWrite (ledPin, LOW);
delay (1000);
}
And so I started writing more codes. For instance making a LED blink like a heart.
int ledPin = 13;
void setup()
{
pinMode(ledPin, OUTPUT);
}
void loop()
{
digitalWrite(ledPin, HIGH);
delay (200);
digitalWrite(ledPin, LOW);
delay (200);
digitalWrite(ledPin, HIGH);
delay (200);
digitalWrite(ledPin, LOW);
delay (1000);
}
I guess this is it for now. I will post more soon