October 2022

Midterm Documentation: Back to Summer Nostalgia – Victoria Chen – Rudi

A. Back to Summer Nostalgia – Victoria Chen – Rudi B. Our previous group research project was a helmet that cured depression among the population. The helmet was connected to helping others lift to a place of positive emotions. I really liked the concept of making people happier, so for the midterm project, Tina and Continue reading Midterm Documentation: Back to Summer Nostalgia – Victoria Chen – Rudi

Recitation 4: Actuators and Mechanisms Documentation

Process: Tina and I first worked on the cardboard section of the activity. We started off by cutting the pieces according to the cutting outline. Then, we hot glued the pieces together. Before, assembling everything together, we moved in to building the circuit as it was advised to us due to its complexity. When building Continue reading Recitation 4: Actuators and Mechanisms Documentation

Recitation 3: Workout Sensors

1. 2. int SENSOR_PIN = 2; int tiltVal; int counter = 0; void setup() { pinMode(SENSOR_PIN, INPUT); Serial.begin(9600); } void loop() { tiltVal = digitalRead(SENSOR_PIN); Serial.println(tiltVal); delay(10);put your setup code here, to run once: { if (digitalRead(SENSOR_PIN) == HIGH) { for(int counter = 1; counter <= 10; counter = counter +1) digitalWrite(SENSOR_PIN, HIGH); delay(250); digitalWrite(SENSOR_PIN, Continue reading Recitation 3: Workout Sensors