Final Project: Prism Personal Dining Table

DSC_0098DSC_0093DSC_0095DSC_0071IMG_3844 2.JPG

For my final project I created an interactive dining table that senses when dishes and plates are put on top and lights up. I wanted to make something that speaks to me and my wants as a busy person who doesn’t always take time for myself. There should also be an IOT component that also posts a message to your slack group telling them that you are taking time for yourself. It uses the force sensor and neopixel strips.

Here is the link to the instructables: https://www.instructables.com/id/Prism-Personal-Dining-Table/

The biggest challenge was working with my board and neopixels and not understanding what was going wrong and why I was shorting my boards. It wasn’t until I changed neopixels that I realized there was something wrong with my neopixels.

 

Week 11 HW/ BOM & circuit diagram for final project

Hello!

Here is the evidence from the lessons

Lesson 4: (this feed includes the button presses from class)

Screen Shot 2018-11-20 at 2.24.04 PM.png

IMG_3728.jpeg

Lesson 5:

The flash led worked but I couldn’t get a video of it since the widget was on my phone :/ But it worked! I got an email.

Adding neopixels:

 

Collect the weather conditions:

 

Lesson 6

Here is my Bill of Materials for my final project the personal dining table

Screen Shot 2018-11-20 at 2.39.09 PM.png

Circuit Diagram

IMG_3729

Homework 10: Blinking and Buttons and Final Project Ideas

Here is my blinking onboard led from the huzzah:

 

Huzzah Button Test:

 

Here are my 3 ideas for my final project:

My first idea is a plant holder that provides light to the plant but also has the predicts the weather for the next day by changing the color of the light.

IMG_3679.JPG

Idea #2 is a portable dining table for people who have to eat meals away from home or at their desk. The main goal is to ritualize eating again even if we have to rush or eat alone. It would sense when plates were loaded onto the tray and it would light up with a calming sequence of colors and also post on twitter that you are eating and that you should not be bothered for  the next hour.

IMG_3705.JPG

 

Idea #3 is a small lamp that you attach to your wall. It senses you coming and then it lights up with the weather forecast for the day so you don’t forget your umbrella after you’ve left the front door and have to come back like I often do.

IMG_3682.JPG

Jellyfish Costume-Final Retrospective

IMG_3610

 

My costume was completed in time for Halloween and I am pretty satisfied with the way it came out. For how much attention I had to pay to the details of the wiring, I would say this was a success.

Materials:

  • 1 Cotton Shirt
  • 1 yard of fringe
  • 30 feet of white wire
  • 10 neopixel leds
  • thread
  • circuit.

Initial Sketch and circuit diagram:

IMG_3479

IMG_3540.JPG

The longest processes by far was sewing all the fringe onto the shirt and then measuring all the white wire for the neopixels. after I measured out each length between the neopixels, I had to cut 3 pieces for power, ground and input. Then I had to put the neopixels on the tassels.

So I wanted the the neopixels initially to twinkle with white and blue lights when I lifted my arms up. Unfortunately, I underestimated just how long sewing the tassels, glueing them and adhering the neopixels would be that by the time I finished doing that, I went for the easiest code possible in terms of what to do. I ended up editing the neopixel code we used earlier in the semester.

IMG_3482IMG_3535

IMG_3603.JPG

Week 7 Halloween Costume Check In

For my go-go dancer halloween costume, I have sewn on all the fringes to the top. No I am ready to start detailing and soldering the led lights together and make sure they work. That will be a long process that will require attention to detail.

 

IMG_3482

fringes cut up and hot glued together.

 

img_3532.jpg

 

Fringes attached to the shirt.

img_3535.jpg

 

Wires separated to be soldered to LEDs.

Halloween Costume Ideas

 

I will be on a team of 1 to complete my halloween costume. I have 3 ideas that I have sketched:

IMG_3479.JPG

My first idea is to design a lit up fringe turtleneck top reminiscent of the 1960s go-go era. I want to sew on the fringe elements under the arms of the sleeves and on some of the fringes put some neopixel leds. I want to leds to gradually glow.

 

IMG_3480.JPG

My second idea is to design a halo crown similar to the one Beyonce wore when she announced her second pregnancy to the world and preformed. I would drill holes in a headband and put the  golden sticks inside. Before that I would attach yellow leds to each stick.

 

IMG_3481.JPG

My last idea is a pair of pirate pants that would alternate strips of yellow and green led lights. I would attach stips of that fabric to the pants and then neopixel leds to the strips.

 

 

 

 

My Plush Night Light

For my plush night light, I wanted to make something for the modern single millennial who also happens to love wine. So much so that they find the presence of a wine bottle comforting. Whether its a guy watching his alcohol intake or a pregnant woman who can no longer drink. This plush night light can give you everything a real wine bottle can’t: soft, plush cuddles!

This night light solves the problem of falling asleep in front of the tv for the 3rd time this week and not being able to find your way back to your bed safely. Don’t you hate when you wake up in the middle of the night and you’re not entirely sure where you are or how to get to where you need to be? This nightlight is here! Simply grab this nightlight when you grab your bottle of wine and you’re good to go!

 

If I could do it again, I definitely would use a sewing machine instead of trying to hand sew the whole thing. I think it would have made it look much cleaner.

Sketches: 

 

Process Photos (I forgot to take some as I was stuffing my toy!):

In context Photos:

IMG_3382.JPG

nlpicIMG_3399.JPG

 

Circuit Diagram:

Fantastic Krunk-Robo.png

Week 3 Arduino Homework

Here are the videos for the Arduino exercises. I liked this week’s exercises because they were a little more challenging and got me thinking of ways of using arduino in real life.

Exercise 1: Digital Input

Exercise 2: Serial Monitor

For the Arduino circuit of my own, I made 2 arduino buttons turn the red led light on and off.I used tinkercad first and it was incredibly helpful.

Link to the public tinkercad circuit here:

Epic Wluff-Juttuli

// constants won't change. They're used here to set pin numbers:
const int buttonPin = 2; // the number of the pushbutton pin
const int ledPin = 13; // the number of the LED pin
const int buttonPinOff = 4;

// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
int buttonState2 = 0;

void setup() {
// initialize the LED pin as an output:
pinMode(ledPin, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(buttonPin, INPUT_PULLUP);
pinMode(buttonPinOff,INPUT_PULLUP);
}

void loop() {
// read the state of the pushbutton value:
buttonState = digitalRead(buttonPin);
buttonState2 = digitalRead(buttonPinOff);

// check if the pushbutton is pressed. If it is, the buttonState is HIGH:
if (buttonState == LOW) {
// turn LED on:
digitalWrite(ledPin, HIGH);
}
if (buttonState2 == LOW){
digitalWrite(ledPin, LOW);
}

//else {
// turn LED off:
//digitalWrite(ledPin, LOW);
// }


}

Here is a link to the video of my code in action: https://vimeo.com/291401843