Contact us today for an adventure in innovation

Reach out and let curiosity soar!

Contact us

077 7 86 30 46

Office

48/B, Horathuduwa Wata MW, Halpita, Polgasowita

Ready to embark on an exciting journey of discovery? Simply fill out the form and get ready to hear from us soon. We can’t wait to connect with you and explore the world of endless possibilities together!

Shopping Cart

Code Guide

  1. When the program starts, the robot moves forward with the gripper open. (Going to collect object)
  2. When the hand is placed above IR sensor robot must stop and close the gripper. (Collecting object)
  3. When the hand is raised again robot moves forward with the closed gripper. (Moving with collected object)
  4. When the hand is placed above the IR sensor again, the robot stops and opens the gripper. (Dropping object)
  5. Return to 1.
Pseudocode:

on start
    close gripper

loop

    read IR sensor value

    if IR == LOW

turn off motors

if gripper is open
close griper
else if gripper is closed
open gripper

wait 3 seconds

else

turn on motors

end if;

end loop;