Script for Video

Zechariah Toole and Brady Gandel

First Laser Cut

Kairu Akaura and Harper Cohen
Kyle Building Laser Cut.dxf

f

Progress of Shoe

Brady Gandel and Zechariah Toole

Laser Cut

Kairu Akaura and Harper Cohen
Kyle Laser Cutting File.3dm

5

22/1/26 Progress Update

Ethan Kwan and 2 OthersJames Popper
Xufeng Cheng

Today we worked on our floorplan and our code for both the front and back ends. 

s

Kairu Akaura and Harper Cohen
Day 2 Kyle.3dm

2

Actual thing

Maksym Kukharenko and Jake Gelb

2nd

Kairu Akaura and Harper Cohen
2nd prototype kyle.stl

q

file

Kairu Akaura and Harper Cohen
kyle.stl

2

second code

Maksym Kukharenko and Jake Gelb

// C++ code

//

#include <Servo.h>


Servo servo_8;


void setup()

{

  pinMode(A1, INPUT);

  Serial.begin(9600);

  servo_8.attach(8, 500, 2500);

}


void loop()

{

  Serial.println(analogRead(A1));

  if (analogRead(A1) > 100) {

    servo_8.write(180);

  } else {

    servo_8.write(0);

  }

  delay(10); // Delay a little bit to improve simulation performance

}