Course Schedule | |
Pre-Studio | |
Mon |
|
Tues |
|
Wed |
|
Thurs |
|
Fri |
|
Mon |
|
Tues |
|
Wed |
|
Thurs |
|
Fri |
|
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.
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);
}
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.
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.