June 2009
24 posts
4 tags
4 tags
5 tags
2 tags
2 tags
3 tags
5 tags
4 tags
3 tags
The first video from my iPhone 3GS.
3 tags
3 tags
4 tags
2 tags
6 tags
3 tags
2 tags
5 tags
2 tags
3 tags
3 tags
4 tags
3 tags
3 tags
My first Arduino sketch
Check out the Arduino here: http://www.arduino.cc. It’s pretty cool.
A “sketch” is a little program. This sketch turns on and off the LED when you push the button. Simple but still entertaining.
//my first awesome sketch
#define LED 13 // LED pin
#define BUTTON 7 // Button pin
int buttonVal = 0;
int ledVal = 0;
void setup() {
pinMode(LED, OUTPUT); // LED is an ouput
...
1 tag