Delta Robot
The goal of this project was to apply my knowledge of forward and inverse kinematics to design and program a delta platform that is capable of moving to user inputed positions and picking and placing
Robot Frames and Dimensions
Base Dimension(f): 95mm
Biscep Dimension(rf): 100mm
Forearm Dimension(re): 310mm
End-Effector Dimensions(e): 40mm
Overall Envelope: 210mm x 210mm x 210mm
Universal Joint Design:
The universal joints in the Delta Robot were designed to enhance flexibility and ease of assembly by utilizing a magnetic approach. Strong magnets and steel balls were incorporated into the joints, where magnets were embedded on one side and steel balls securely housed on the opposing side. This innovative design allowed the steel balls to pivot freely in any direction while being held in place by magnetic attraction, facilitating a smooth transfer of motion with minimal friction. This solution eliminated the need for complex mechanical parts, simplifying the assembly and enhancing the robot's responsiveness and performance.
Kinematics:
In forward kinematics, we determine the position X, Y, Z of the end-effector given specific joint angles Theta_1, Theta_2, Theta_3. This involves setting up equations based on the robot's geometry and the constraints imposed by its arm lengths, leading to a system that tends to be complex due to the parallel structure of the robot, often resulting in multiple solutions. In contrast, inverse kinematics involves calculating the joint angles required to position the end-effector at a desired coordinate. This is typically approached by considering the geometric intersections of spheres, as each joint angle dictates the arm's reach within fixed distances. The process is more straightforward due to these spatial constraints, allowing us to derive the angular relationships using trigonometric identities and equations of the circles formed by projecting the arm configurations onto distinct planes.
DeltaKinematics Class:
The DeltaKinematics class in the Arduino code allows the Delta Robot to translate specified Cartesian coordinates into corresponding joint angles for servo actuation. The class encapsulates geometric parameters, such as the length of the robot's arms (rf) and linking rods (re), along with the base triangle (f) and platform triangle (e) dimensions. These parameters define the spatial configuration and mechanical limits of the robot. Within the class, the method calcAngleYZ is a core function that computes the angles required for the servo motors by establishing equations derived from the robot's geometric constraints. The calculations involve projecting the end-effector's position into the YZ-plane and solving a sphere intersection problem, ensuring each arm stays within its kinematic reach. Specifically, the method calculates the angle theta by considering the vertical offset and adjusting for the arm's planar dynamics, factoring in trigonometric transformations that include rotations to account for the 120-degree spacing among the arms. The inverse() method integrates these computations to derive the necessary joint angles a, b, c for each of the servo motors, ensuring they align to position the end-effector accurately. By seamlessly implementing these kinematic solutions, the DeltaKinematics class facilitates real-time motion control, enabling the Delta Robot to execute precise and dynamic movements based on the calculated joint angles that directly map to the PWM signals sent to control the servos.
XYZ Axis Individually
The Result:
XY Circular Trajectory
XY Circular Trajectory with Z Sine Wave
Conclusion:
The Delta Robot project successfully demonstrated the practical application of kinematic principles and robotics engineering. Through a comprehensive process of design, manufacturing, and programming, the project culminated in a functional robot capable of executing precise XYZ movements. Despite challenges like 3D printing setbacks and the inability to implement trajectory planning due to servo limitations, the project achieved its primary objectives and provided invaluable experience in bridging theoretical concepts I learned in class with real-world applications.