/*Blink2Turns on a LED on for half a second, then off for half a second, repeatedly. It also does the same to an off-board LED connected to pin 12 so that when one LED is on the other is off.The circuit:* LED connected from digital pin 13 to ground via resistor.* second LED connected from digital pin 12 to ground via resistor. I used 330 ohms.* Note: On most Arduino boards, there is already an LED on the boardconnected to pin 13.Created 1 June 2005By David Cuartielles. Adapted by Peter Brookbased on an orginal by H. Barragan for the Wiring i/o board*/int ledPin = 13; // LED connected to digital pin 13int redLedPin = 12; // LED connected to digital pin 13int del =500;// The setup() method runs once, when the sketch startsvoid setup() {// initialize the digital pin as an output:pinMode(ledPin, OUTPUT);pinMode(redLedPin, OUTPUT);}// the loop() method runs over and over again,// as long as the Arduino has powervoid loop(){digitalWrite(ledPin, HIGH); // set the LED ondigitalWrite(redLedPin, LOW); // set the LED ondelay(del); // wait for a seconddigitalWrite(ledPin, LOW); // set the LED offdigitalWrite(redLedPin, HIGH); // set the LED offdelay(del); // wait for a second}
This blog follows my attempts to create things using the Arduino Duemilanove board and components
Tuesday, March 16, 2010
Task 11 & 12 - Blink2 (Controlling 2 blinking LEDs)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment