Health Wearable Technology (Registration Closed)

Final Presentation

Alessandra Manganaro and Amedeo Bettauer

Allergy Away

Breathe in the trees without having to sneeze!

By Alessandra Manganaro and Amedeo Bettauer

1 / 35

Final Presentation

William Butler and Juan Lenger

Exo-Cast and Auxi-Arm

Augment your arm, overcome your harm!

Juan + William

Exo-Cast Final Version

Juan Lenger

Bat Arduino wings moving

Juan Lenger

NuVu Cardboard Subway Surfers Video Updated

Juan Lenger
Course Schedule
Pre-Studio
  • 000 | Icebreaker | Dance + Enhance Telephone Game
  • 001 | Platform Overview | Create Your First Blog Post
Mon
  • Studio Introduction
  • 00 | Intro Exercise | Mobile Mobile
  • 01 | Precedent Analysis
Tues
  • 02 | Arduino Tutorial
  • Precedent Discussion (Review Precedent Libraries)
Wed
  • 02 | Rhino Tutorial
  • 02A | Brainstorming Part I & Part II
  • 02B | Collective Brainstorming & Team Formation
Thurs
  • 03 | Introduction to Prototyping | Research
  • 04 | Sketch Modeling
Fri
  • 04 | Sketch Modeling Continued
  • 05 | Feedback and Critique 
Mon
  • Discuss Advanced Prototyping (Prepare for hands-on portion, review slide-decks) 
  • 06 | Storyboarding
  • 07 | Advanced Prototyping (hands-on) 

Tues

  • Prototyping Day
  • Desk Critiques

Wed

  • Final Build Day!

Thurs

  • 08 | Diagramming
  • 09 | Create Presentations

Fri

  • Presentation Day!


Studios will begin on August 9th and end on Aug 20th. Students will be in session from 10 am - 12 pm and 1 - 3 pm.

Bat

Liam Brady
NewPing_v1.9.1.zip

Ultrasonic sensors are distance sensors that use sound waves to detect how far away an object is. They send out high frequency bursts of sound and listen for its echo. They then determine how far away the object is based on how long it takes for the sound to return to the sensor. This variety requires an Arduino library to operate.


#include <NewPing.h>

#include <Servo.h>

Servo myservo;  // create servo object to control a servo


NewPing mysensor(5, 6, 200);


void setup() {

  myservo.attach(11);  // attaches the servo on pin 9 to the servo object


  Serial.begin(9600);

}


void loop() {

  int pingTime = mysensor.ping();


  int distance = mysensor.ping_in();


  int distance_cm = mysensor.ping_cm();


  if (distance < 2){

    myservo.write(179);

  }


  else{

    myservo.write(0);

  }

  Serial.println(distance);

}


        

Pre-Studio Activity

Chris Perry

Creating Your Studio Setup

Materials 

When looking to build anything, the materials chosen become very important, and this is no different for our project.  We will be on the look out for a few different types of materials with varied uses.  The best location to begin your search is the recycling bin, but please make sure to approve this with adults prior to delving in.

For each of these properties, have a picture ready and your reason for why you chose it. No re-using materials, each should be a different material.

  1. Strong: Find a piece of material which is very strong. When we use the word strong, how does this fit your material?
  2. Weak: Find a material which is weak.  Does this fit the same definition from your strong material or do strength and weakness take on different meanings for different materials?  Why would you want a weak material in your bot?
  3. Flexible: Find a piece of material which is flexible.  Does this material return to its original shape after being flexed or does it stay in a new shape?  Is is harder to flex in one direction than another?
  4. Fold-able: Find a material which folds.  How is this different from your flexible material?
  5. Easy to cut: Find a material which you can easily(and safely!) cut with scissors.  Why would this material be useful for your bot?
  6. Hard to cut: Find a material which is hard to cut (and please do not try to cut it now). Why might this be useful for your bot?  What might be a challenge when using this?

Hat For Help

Hugo Jimenez

NuVu Platform: Logging In

James Addison

If you have used the NuVu Platform before AND you remember your password, then skip to STEP 4 and 5. If this is your first time using the Platform or if you have forgotten your password, then follow all of the steps below. 

STEP 1: In the top-right corner, click the word "login." 

STEP 2: When the black menu appears, click "reset password," and enter your school email address, and then click "Send Password Reset Link."


STEP 3: Check your school email account for an email from NuVu. Be sure to check your junk email folder as well if you don't see the email in your inbox. Follow the instructions in the email to reset your password.

STEP 4: You should now see your name in the top right corner. Success! (your screen will look slightly different than mine). Under "Studios" click on our current studio, "Cyborg Enhancements". You can also find this studio by clicking on your name in the top right corner.

STEP 5: You are now on the landing page for our studio for the rest of the term! To let me know that you have succeeded in making it this far, make a celebratory comment under the post "comment here!" This post will only appear if you have logged in successfully.