fastrobots

This is my repository for ECE 4160: Fast Robots at Cornell University during the Spring 2025 semester.

This project is maintained by vs356

Lab 4: Motor Drivers and Open-Loop Control (Due 3/4/2025)

Prelab

Lab Tasks

void loop() { analogWrite(0, 255); analogWrite(1, 0); delay(1000); analogWrite(0, 0); analogWrite(1, 255); delay(1000); } ```