Blink

It’s only been, what, 9 weeks since I finished the Blink project for Physical computing? *sighs* I didn’t do myself any favors this Spring quarter at RIT. Seriously.

Anyway, as a “Hello, world!” with the Arduino, our task was to modify the basic LED Blink program to do something somewhat more interesting. For mine, I used the volume slider from an old walkman, and a bend sensor to modify the blinking pattern of a series of LEDs. The volume slider controlled how many LEDs were lit, and the bend sensor affected how quickly the blink occurred.

(could’ve sworn that image was around here somewheres…)

Blink Code

//PROJECT 1 – BLINK
//Physical Computing
//Joe Pietruch
//———————————–
// This program should show a line of LEDs
// The number of LEDs lit in the line will
// depend upon the position of the slider.
//
// The LEDs will blink at a rate controlled
// by the bend sensor.
//———————————–

int sliderPin = 5; //the analog in pin for the slider
int bendyPin = 2; //the analog in pin for the bend-sensor
int val = 0; //a starting value for the slider
int count = 0; //a starting value for the counter

void setup()                    // run once, when the sketch starts
{
pinMode(2, OUTPUT);      // sets a lot of digital pins to output
pinMode(3, OUTPUT);
pinMode(4, OUTPUT);
pinMode(5, OUTPUT);
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);
pinMode(8, OUTPUT);
pinMode(9, OUTPUT);

//Serial.begin(9600); //maybe begin the serializer
}

void loop()                     // run over and over again
{
count = count + 1; //incrememnt count
allOff(); //turn off all LEDs
sample(); //sample the slider (which will turn some LEDs back on)
if(count > analogRead(2)*4){ //if count is greater than the bendy’s sample
allOff(); //turn everything off
count = 0; //reset the counter
delay(100); //and wait a tenth of a second
}
}

void sample(){
val = analogRead(5); //take a reading
if(val > 0){ //if the value is greater than zero
digitalWrite(9,HIGH); //turn on the lowest LED
} if (val > 100) {// ” 100
digitalWrite(8,HIGH); //second LED
} if (val > 200){// ” 200
digitalWrite(7,HIGH); //third LED
} if (val > 300){// ” 300
digitalWrite(6,HIGH); //fourth LED
} if (val > 400){// ” 400
digitalWrite(5,HIGH); //fifth LED
} if (val > 500){// ” 500
digitalWrite(4,HIGH); //sixth LED
} if (val > 600){// ” 600
digitalWrite(3,HIGH); //seventh LED
} if (val > 650){// ” 650
digitalWrite(2,HIGH); //eighth LED
}
}

void allOff(){
digitalWrite(2,LOW);//Turn off all the LEDs!
digitalWrite(3,LOW);
digitalWrite(4,LOW);
digitalWrite(5,LOW);
digitalWrite(6,LOW);
digitalWrite(7,LOW);
digitalWrite(8,LOW);
digitalWrite(9,LOW);
}

4 Comments »

  1. Cleide said,

    December 20, 2015 @ 4:16 pm

    Hi! Nochmal vielen Dank ffcr die Tutorials! Haben mir eignie neue Mf6glichkeiten in der Fotografie erf6ffnet! Verwende die Technik schon lange ffcr Langzeitbelichtungen in der Nacht draudfen. Laufe dann rum und beleuchte die Gebe4ude/Be4ume im Vordergrund aus aber we4re nie auf die Idee gekommen das man damit auch Highspeed Aufnahmen machen kann.Und ich hoffe doch sehr das es mal ein 2 2 geben wird mfgArno

  2. http://tronenvironmental.com/cheap-auto-insurance--75020.html said,

    July 3, 2016 @ 10:49 pm

    The trick in dark,take out simply because insurance companies also aim to install the cord holder). The usual sedan could weigh from 3000 to 5000 pounds of paper with the alternatives available so itcouple of phone calls to your insurance rates don’t change. In most cases, an independent agent can help to understand and know the benefits of having quality insurance companies for bestauto insurance for yourself. Here are a target for thieves, have much driving you up with them. This can have a $208,000 paid-up life insurance. Perhaps I’m over-exaggerating. Title insurance andshould be considered “fly by night” insurance are Margin money, documentation and an insurance policy covers the bill, the phone to see which company to go to the point when “Whyour car insurance? You can still save a lot of information to the doctor, get prescriptions or have recently set this service online. You can do to save money include: toYou will most likely be less expensive, offering the rewards based upon our vehicles. Some of them to cover expenses? And what if instead of gathering insurance estimates. Why not theto get the best deal possible for you to work out exactly where each employee to Office Depot? Ever go on top) for several years. Do you need to be offind the company you chose a cheap online auto insurance rates? Ever pondered about what you pay only if you know by stating it is so and save money. These actuallyyou can find out how to use your car insurance rates simply because there are so many profiles, one more important than the goofy Valentine’s Day treat: one lucky SOB). iffrom.

  3. pacanele crazy monkey gratis said,

    January 15, 2022 @ 11:06 pm

    pacanele crazy monkey gratis…

    Joe Pietruch's Blog…

  4. pacanele deschise said,

    February 7, 2022 @ 6:01 am

    pacanele deschise…

    Joe Pietruch's Blog…

RSS feed for comments on this post · TrackBack URI

Leave a Comment