Final – Juan Rivera

“Piano Sleeve” – Final Materials: Copper tape red lose wire green lose wire Adafruit MPR121 capacitive touch sensors Adafruit Trinket Pro 5V Proto Board Tiny audio buzzer Adafruit liion/lipoly backpack battery 2 compression sleeves Sewing thread and needle velcro strips 2 Neopixel strips CODE: #include <Wire.h> #include <Adafruit_MPR121.h> #include “pitches.h” //#include <LED_animations.h> #include <Adafruit_NeoPixel.h> #ifdef…

Interactive assignment – Juan Rivera

“Piano Sleeve” CODE: // #include <Wire.h> #include “Adafruit_MPR121.h” #include “pitches.h” #define BUZZER_PIN A0 // The output pin for the piezo buzzer #define NUM_OF_SAMPLES 5 // Higher number whens more delay but more consistent readings // You can have up to 4 on one i2c bus but one is enough for testing! Adafruit_MPR121 cap = Adafruit_MPR121();…

Creative Switch- “winter LED glove”- Juan Rivera Caro

Winter LED GLove Materials: 1 winter glove 2 LED lights (any color) 1 resistor 1 battery enclosure 2 3v button batteries copper cloth copper tape (optional) copper thread 1 wire 1 needle (for sowing) scissors STEP 1: Start of by sowing the copper thread into the glove. One sow pattern should be on the tip…

Assignment_1- Juan Rivera Caro

void setup() { size(600,300); background(0); } void draw() { rect(mouseX, mouseY, 50, 50); fill(0); stroke(255); strokeWeight(3); smooth(); rect(mouseX+20, mouseY+20, 50, 50); fill(255); stroke(1); strokeWeight(2); if (mousePressed) { background(0); ellipse(mouseX, mouseY, 50, 50); fill(255); stroke(0, 0, 255); strokeWeight(3); } for (int i=0; i<600; i=i+20) { line(0, 300, 300, i); } for (int i=0; i<600; i=i+20) {…