Assignment 2 – Making a lighted flower using LEDs

Choosing an idea was not as difficult as I thought considering the shape of a flower Is decently easy :). I thought it would have been fun to add fun colors too the petals. Materials copper wire a battery, 3V DC purple coin cell Tube Copper Tape LEDs Tape Zip tie Sauter machine Multimeter Materials First,…

Assignment 1

PImage img; float theta; Rain r1; int numDrops = 50; Rain[] drops = new Rain[numDrops]; // Declare and create the array void setup() { size(1000, 780); img = loadImage(“bet.jpeg”); smooth(); noStroke(); //Loop through array to create each object for (int i = 0; i < drops.length; i++) { drops[i] = new Rain(); // Create each…

Creative Switch: Light-up Butterfly

I wanted to create an interactive piece where it is shaped like a butterfly, and when you make its wings flap, the LEDs turn on. The switch aspect in this project is the loop made out of conductive fabric tape touching the copper tape to close the circuit and turn the LEDs on. Supplies: 4 red,…

Processing Drawing

PShape Shapes; void setup() { size(500,400); background(10, 80, 100); } void draw() { background(50); stroke(255); fill(150); rect(mouseX, 180, 100, 50); translate(mouseX, mouseY); ellipse(0, 0, 40, 40); // Note that this ellipse will move twice as fast as the previous, // because transformation accumulate fill(0, 255, 0, 100); translate(mouseX, mouseY); ellipse(0, 0, 40, 40); if (mousePressed)…

Creative Switch – Inventory Storage

My initial idea for this project was to create something that would be helpful in some way for me. I began by thinking about making some sort of mechanism that would somehow remind about items or things that I usually forget to take like my wallet or keys. Through some brainstorming I ended up with…

Creative Switch: Light Up Jewels

For my creative switch I wanted to make a necklace that lit up. Specifically I really wanted the clasp to serve as the switch. So the motion of closing the necklace would light up the LEDs. The LEDs also take place of gems/charms that are usually on a necklace. Materials: Necklace 3 LEDs Wire (green…

Creative Switch: Interactive Bottle

For my creative switch I wanted to use something you typically wouldn’t want near electricity, water. Using water as a switch might seem strange at first, because you might think mixing water and electricity is a bad idea, but water can work just like any other conductor. I decided to make a bottle light up…

Creative Switch: Catching Fireflies

When I think about the concept of a switch, turning a light on and off, I think about my terrible grammar growing up. “Open the lights,” My mom would tell me. “Close the lights,” I’d imitate her. So I thought about an action that would mean “To open and close.” I also thought about light…

Peter li assignment 1

Drawing machine void setup() {    size(600,300);    background(); } void draw() {    fill(random(255), random(255),random(255),random(255));    rect(random(600),random(600),random(255),random(255));    if (mousePressed == true){       line (pmouseX, pmouseY, mouseX,mouseY);    } }

Christmas Tree

 In my dorm room, I have a bunch of Christmas lights because Christmas holds a special place in my heart. It’s a time where all of my family members get together and celebrate without having to worry about reality. We all just enjoy each other’s presence in the moment. I created this because with the…

Assignment 1 – Drawing Machine

I was inspired to capture the joy that plants might feel when they are being watered. This is the sentiment I tried to emulate in my piece, “Happy Flower.” The empty watering can follows the user’s mouse, and when you press down, water should come out of the watering can. The sun in the corner…

Assignment 1

I didn’t really know what kind of image I wanted to create so this image came about as I was learning different things on Processing.  I didn’t get too elaborate as I came across a lot of errors when I did, sadly.  But along the way I came up with the idea of drawing a…