Robotic Arm for Programming Instruction Design (R.A.P.I.D)

The R.A.P.I.D. project was a proof-of-concept that myself and 2 others worked on as a final project for our Modern Robotics and Automation course. The goal for this project was to one day implement it into the Robotics course at the University of Iowa College of Engineering, and have it take the place of other labs in which students received less programming experience.

My primary focus for this project was creating a GUI to control 6 servos that would become the 6 axes of the robot. I used two different programs to control the 6 servos that drive the RAPID bot, Arduino IDE and Processing with the ControlP5 library. The Arduino code was used to actually control the 6 servos, while also sending information such as each servos position via serial port to Processing. In addition to sending serial information to Processing, the Arduino code also received serial information on if a function in Processing took place, such as pressing a button. The Processing code functioned as a GUI for rotating each axis in the positive or negative direction, displaying each axis position in degrees, and having a button that homes all axes. If a button was pressed in the Processing GUI it sent serial data to the Arduino to control a corresponding function, such as rotating an axis.