Project: Robotic Air Hockey Table
Overview: The overall goal of this project is to build and program a robot to play a miniature version of air hockey
Project Criteria:
Must Haves:
Ability to block player shots
Ability to shoot at the opposing player’s goal
Ability to track the puck location in real-time
Should Have:
Just as fast or faster than the general human player
Variation in shot types
Nice to Have:
Track score
Have multiple difficulties

Build Updates
Build Update: 3/23/2025
So it’s been awhile! I’ve been packed with school so I decided to put my projects to the side. Now I’m back!
I’m still waiting for the Raspberry Pi to get delivered. The package got lost in the mail so I’ve been waiting for Amazon to send a new one, which should be in the next week or so. In the meantime, I’ve started experimenting with the trajectory prediction software that’s going to run on the Raspberry Pi. I started by finding a top-down picture of an air hockey table that very closely resembles the table I will eventually buy. I then made multiple copies with the puck in different positions. This will hopefully stimulate the “movement” between frames.
The program tracks an air hockey puck's movement between two images to calculate its velocity and predict its future trajectory, accounting for the puck's radius and table geometry. It uses OpenCV to detect the table boundaries and puck position, then simulates bounces off both flat edges and rounded corners. The final visualization overlays the predicted path on the image with velocity metrics.
Build Update: 2/21/2025
Rewrote the speed test to use the FastAccelStepper library and the program determined that the max speed and acceleration the gantry could reach was:
Max Tested Speed: 36000
Max Tested Acceleration: 150000
Once again the steppers should be able to move faster. While the FastAccelStepper library can reach up to 200,000 steps per second, that is only with an ESP board. The board can’t reliably push faster speeds due to Arduino Mega’s 16MHz processor. While the gantry is moving fast, it’s not fast enough to meet my required criteria.
I will eventually need an Arduino to run the image processing and trajectory planning so I’m looking into using Klipper and a Bigtree stepper control board.
Build Update: 2/15/2025
After a ton of research, I found this table. It outlines all the microcontroller stepper driver libraries and the maximum speeds they can drive steppers. turns out Accelsteper has a max speed of 4000 steps/sec. I’m going to switch to FastAccelStepper to drive the steppers. Time to rewrite the entire codebase!
Build Update: 2/9/2025
Began running speed tests with an Arduino, TMC2209 Stepper drivers, and the AccelStepper Library to characterize the max speed and acceleration. I made a program that incrementally increases the speed and measures the time it takes to reach two points. It continuously does this until the time doesn’t increase then begins increasing acceleration the same way. Once that maxes out it repeats the process, starting with speed until increasing the speed and acceleration don’t affect the travel time.
That being said the gantry is not going as fast as it should be
Build Update: 2/5/2025
The connection between the two gantry sections wasn’t stiff enough for the required application. Add 10mmx10mm aluminum extrusion between the two gantry sections
Build Update: 2/1/2025
Finished Design of the CoreXY Gantry. Beginning to 3D printing all the components and start initial assembly.