Introduction
I designed a 4 revolute joint robot arm and wrote forward kinematic algorithms in C++ to display the end effector position relative to the base (1st joint) and inverse kinematic algorithms in Python that allows us to input a desired position and in return fetch the required joint angles to reach that position.
I designed the base and arms in SolidWorks and converted the model to .gltf so that I could use the Three.js library along with react-three-fiber to display it above. Regular panning, zooming, and rotating controls work in the outlined canvas.
Features:
- LCD Screen Displaying
- xyz coordinates of end effector
- , , , joint angles
- Simple Potentiometer controls
- Ability to grab small/lightweight objects
Improvements to be made:
- Better power supply.
- When motors were drawing current under heavier loads they would struggle a lot. A better power supply design is definitely needed to smoothen out these spikes.
- More integrated algorithm and UI
- The NumPy python library was used to write algorithms for inverse kinematics. So the desired end effector position would be inputed in the python script, required joint angles would be manually inputed using Potentiometters and the Robot would move there. A more integrated yet simple UI such as a number pad for each xyz coordinate would definitely be an improvement to the project.