Quadruped
What do you build once you have a working hexapod? Yeah you guessed it right, you build a quadruped!!
As part of my final year project I planned to build a completely 3d printed and cheap quadruped robot. But unfortunately due to the pandemic I was not able to source all the parts on time (shipping delays of motors and motor drivers!!). But I did create a complete simulation of it on pybullet, and passed on the project to my juniors!
The most challenging part of working on the simulation was it's controls. Back then I did not know about any sophisticated control algorithms (like Model Predictive Control, Linear Quadratic Regulator, etc.), so I relied solely on my intuition and got help from a bunch of youtube videos (James Bruton Open Dog videos were extremely helpful!) to develop my own control algorithm!
Very similar to my hexapod project, I formulated inverse kinematic equations to find the motor angles for any coordinate I want the leg to move to. Then I simple iterated through a set of points to make the leg follow a certain path. Despite how naive this sounds, generating the equations and getting the simulation to work was extremely challenging (given I has any experience with robot simulations)!