Monday, January 7, 2008

Some new stuff

Hi, here is some generic stuff I did.


Tuesday, March 13, 2007

A link

Here's a link to another blog that mentions the same thing:

http://peashoot.blogspot.com

Eric Forman?

Here is the website of interactive artist Eric Forman.
www.ericforman.com

It is difficult to find his work because his name is the same as the main character of that unnamed TV show.

Tuesday, January 9, 2007

Arduino code

Here is the code for your first Arduino program:

/* Blinking LED
* ------------
*
* turns on and off a light emitting diode(LED) connected to a digital
* pin, in intervals of 2 seconds. Ideally we use pin 13 on the Arduino
* board because it has a resistor attached to it, needing only an LED

*
* Created 1 June 2005
* copyleft 2005 DojoDave
* http://arduino.berlios.de
*
* based on an orginal by H. Barragan for the Wiring i/o board
*/

int ledPin = 13; // LED connected to digital pin 13

void setup()
{
pinMode(ledPin, OUTPUT); // sets the digital pin as output
}

void loop()
{
digitalWrite(ledPin, HIGH); // sets the LED on
delay(1000); // waits for a second
digitalWrite(ledPin, LOW); // sets the LED off
delay(1000); // waits for a second
}

Hello there


This is a first test post to see how easy this all is. This is a piece by Olafur Eliasson called Your Light House.