This is code for controlling servos through an arduino through a computer. This is a hobbyist program for Science Olympiad's Robot Arm event. Below, I have explained the contents of this project. Feel free to fork! Submit a pull request and I will try to get back to you as soon as possible.
StandardFirmata.ino
: Arduino's default Firmata implementation
- TODO: mod the Firmata implementation for Stepper Motors
master.py
- This contains GUI code
- This is the runable file
- This file spawns all of the subprocesses
- All pyGame events are processed here
- Delegates events and other tasks to
automatic_control.py
andmanual_control.py
automatic_control.py
- This contains code that controls the Robot autonomously
- Although the specific routine is autonomous, you can still spontaneously start/stop/skip to next/go to last...
- Sends commands to
servo.py
manual_control.py
- This contains code that controls the Robot with a joystick
- It supports several different modes
- Sends commands to
servo.py
servo.py
- This contains code for manipulating servos
- Can manipulate servos individually, or can manipulate the robot as a whole
- It sends commands to
communication.py
communication.py
- This code contains the specifics about communicating with arduinos
- Uses pyFirmata to communicate over a serial port with the arduino
- It sends firmata data over serial to the arduino