——– Interactive Project ——– For my project I wanted to prototype a game on the Arduino and make something interactive for people to enjoy. At first, I was going to do an installation where two people would play a game, but I wanted to do something a little different than a game on display. After…
Category: All Posts
Joanna Kim – Final Project: Edelweiss
My final project was a refined version of our last assignment. I created five flowers that light up according to the different notes that are played in the song from The Sound of Music, “Edelweiss.” My target audience would be people who can read music, as I would ideally want to have an instrument and…
Final Project: EL oh EL wired shoes (aka twingle toes)
For my final project I wanted to make use of something that I already own and utilize EL wire since it’s not really a common material. I found some green boots that I thrifted in the past and decided to spice them up with some graphic designs. Materials: Pink EL wires (amazon) Green boots…
Final Project: Motion controlled drawing arm
My final project is a servo motor drawing arm controlled by an arduino using motion. The idea is for the arm to follow motion from your hand, which then gets drawn out. A secondary part of the project also gives a digital representation of your motion controlled drawing on processing. Materials: Circuit Playground Express 2…
Final Project: Pulsing Heart
Title: Pulsing Heart Materials: Circuit Playground Express HDMI cord alligator clips with female ends pulse sensor with male ends electric tape 3D printed anatomy heart Step 1: download pulsing heart code – you can find various versions online or check out MakeCode Step 2: Go to – https://learn.adafruit.com/3d-printed-heart-capacitive-touch . . . download the 3D print files…
music instrument MIDI keyboard
this final project is a MIDI music instrument Key board. The concept of my project is to use the lowest cost to create a music instrument. this project have a more personal meaning for myself. I want to combine the technology and the cheap material. This project is to remind me lack of instrument is…
Final Project: Mood Light
Title: Mood Light Purpose: To express emotion using no language. Inspiration: I was inspired by reversible plushies and how the mad and happy expression on the object depicted the emotion of the user by the way the user flips it. In this instance, depending on the face of the cube a specific emotion is expressed….
Final Project – Punch-Counting Boxing Gloves
Punch-Counting Boxing Gloves Mackenzie Carlson What You’ll Need: Gorilla Glue two coin cell batteries 30 pixel neopixel strip Circuit Playground Express (CPX) Pair of boxing gloves Ninja Flex (for 3D printing) https://learn.adafruit.com/case-for-circuit-playground – CPX container .stl files Code: input.onGesture(Gesture.ThreeG, function () { light.setPixelColor(Punch,0xff00ff) strip.setAll(0xff00ff) Punch += 1 if(Punch == reps){ light.showRing( `black black black black black…
Interactive Cloud Project
For my interactive Project I decided to make a Led Storm Cloud. The cloud would light up and blink based on what code you programmed it to do. In this Project, My cloud lights up rainbow colors and blinks as if an actual storm cloud would using the Delay command. Materials: 2 packs of cotton…
Interactive Project Documentation
air guitar simulate glove peter liang ban li summary : this is a air guitar simulate glove. It will sense your glove location to produce sound.with different location of the glove the CPX (circuits playground express) will produce different sound. material: glove , tape or hair band, battery supply. 1. this project is planed to…
Interactive Assignment: Edelweiss
Summary: I named this project “Edelweiss,” as I was inspired by the song from The Sound of Music. This assignment is the prototype for my final project. This project is meant to resemble an edelweiss flower and change colors to the song “Edelweiss.” The lights on the circuit playground will shine different colors according to…
Processing Drawing Machine
Processing Drawing Machine Mackenzie Carlson For this assignment, I wanted to create something pretty and simple. The only step you need to know is to click the screen- the rest will draw itself! The Code: var lines = []; var colors = []; function setup() { createCanvas(windowWidth, windowHeight); colors.push(color(205,183,186,255)); colors.push(color(233,170,187,255)); colors.push(color(200,76,86,255)); colors.push(color(208,27,8,255)); colors.push(color(190,102,88,255)); colors.push(color(220,74,77,255));…