clamoring's posts

www.clamoring.com

In few words: flickr etsy instructables

Wednesday, February 27th (116)

0 Vote up

Feb 26, oscilloscope waves

I learned how to use an oscilloscope today! I made waves. Here is a video and the code for the LEDs.

embedded by Embedded Video

int timer = 100;                   // The higher the number, the slower the timing.
int pins[] = { 3, 5, 6, 9, 10, 11 }; // PWM pins
int num_pins = 6;                  // the number of pins
int value = 0;                            // start at value 0

void setup()
{
int i;

for (i = 0; i < num_pins; i++) {   // 0 to num_pins - 1
pinMode(pins[i], OUTPUT);
}
}

void loop()
{
int i;
for (i = 0; i < num_pins; i++) {  // loop
for(value = 0 ; value <= 255; value+=5) { // fade in

analogWrite(pins[i], value);           // write value to pin

delay(2);

}
for(value = 255; value >=0; value-=5){   // fade out

analogWrite(pins[i], value);

delay(2);

}
}
for (i = num_pins - 2; i > 0; i–) {

for(value = 0 ; value <= 255; value+=5) {
analogWrite(pins[i], value);
delay(2);
}
for(value = 255; value >=0; value-=5){

analogWrite(pins[i], value);

delay(2);
}
}
}

Tuesday, February 26th (135)

5 Vote up

Feb 25, 2008 - Copper thing

This is the first thing I’m making out of the jewelry making supplies I’ve accumulated recently. I’m signed up for a real class so this is just an experiment. The corners were particularly difficult. Anyway, simple but somehow catchy.

Sunday, February 24th (120)

0 Vote up

Feb 24, 2008 - banana splits

Saturday, February 23rd (123)

0 Vote up

Feb 23 - photo

I spent Saturday at a girlfriend’s house (the weekend actually, which is why this post is late). I took a picture of her window. It overlooks a beautiful lake. The stained glass was made for a neighbor and this was what they saw from the neighbor’s house. The terrain is only slightly different as they are only four houses down. The art was a gift to my friend when the neighbors changed the shape of their window and could no longer use the art.

It was lovely to wake up to.

Friday, February 22nd (127)

1 Vote up

Feb 21, 2008 - Glow stick painting

Glow stick painting of a light bulb. The texture at the bottom was the broken glass. The top was faded because it was cold outside. My boyfriend suggested giving it a little life with the blowtorch but I declined as we were already on my neighbor’s driveway (it was darker than ours).

Wednesday, February 20th (157)

0 Vote up

Feb 20, 2007 - cupcakes

Mmmmm… German blonde.

Tuesday, February 19th (153)

0 Vote up

Feb 19, 2008 - evil kitty ATC

Monday, February 18th (176)

9 Vote up

Feb 18, 2008 - Robot ATC

This was a triumph!

I’m making a note here… HUGE SUCCESS.

Sunday, February 17th (147)

5 Vote up

Feb 17, 2008 - Robot ATC

FAIL

My thing today was supposed to be an ATC with a little robot on it with LED eyes that light up when you touch the pad. Unfortunately, my design is flawed and my touch switch doesn’t work the way I need it to. Apparently humans aren’t nearly as conductive as metal. Sux. I’m reworking my design and will post when complete. In the meantime here is the original PCB.

9 Vote up

Feb 16, 2008 - Flavored vodka

Friday, February 15th (155)

2 Vote up

Feb 15 -More ATCs

Kinda geeking out on ATCs right now.img_0724.JPG

Thursday, February 14th (199)

1 Vote up

Feb 14 - ATC

img_0730.JPG

Wednesday, February 13th (187)

3 Vote up

Feb 13, 2008 - ATC

smile_front.jpg

smile_back.jpg

Tuesday, February 12th (220)

1 Vote up

Feb 12, 2008 - LED fading

Making an LED fade in and out using the Arduino platform.

yay!

****************************

int ledPin = 9;
int value = 0;

void setup()
{
pinMode(ledPin, OUTPUT);
}

void loop()
{
for(value = 0 ; value <= 255; value+=5) { // fade in (from min to max)
analogWrite(ledPin, value); // sets the value (range from 0 to 255)
delay (10);
}
for(value = 255; value >=0; value-=5){ // fade out (from max to min)
analogWrite(ledPin, value);
delay(10); // sets the value (range from 0 to 255)
}
}

Monday, February 11th (245)

1 Vote up

Feb 11, 2008 - gradient tights

Sunday, February 10th (228)

6 Vote up

Feb 10, 2008 - Firefly pendant

Instructable here:

embedded by Embedded Video

Saturday, February 9th (241)

2 Vote up

Feb 9, 2008 - bristlebot

Inspired by Evil Mad Scientists.

embedded by Embedded Video

Friday, February 8th (236)

2 Vote up

Feb 8, 2008 - color changing LED light

embedded by Embedded Video

Thursday, February 7th (314)

3 Vote up

Feb 7 - chromatography

Practice run:

img_0390.JPG

Chromatography snowflake

img_0391.JPG

Wednesday, February 6th (336)

2 Vote up

Feb 6, 2008 - grocery bag

Believe it or not there are actually TWO cats in the bag!

I made the bag. ;)

img_0331.jpg