Centered Content

1. Click on Play to watch the product review

Click on Play to watch the product review

2. Click on BUY NOW to process the payment

Click on BUY NOW to process the payment

3. Click on PROCEED TO CHECKOUT after the product selected

Click on PROCEED TO CHECKOUT after the product selected

4. Type First Name in the given space

Type First Name in the given space

5. Type your Last Name in the given space

Type your Last Name in the given space

6. Type your address in the given space

Type your address in the given space

7. Type your city in the given space

Type your city in the given space

8. Type your number in the given space

Type your number in the given space

9. Type email address in the given space

Type email address in the given space

10. Click on Onepay to process via card ( Debit or Credit card )

Click on  Onepay to process via card ( Debit or Credit card )

11. Click on PLACE ORDER to process the payment

Click on PLACE ORDER to process the payment

💸 onepay payment gateway

12. Click on the card you have

Click on the card you have

13. if you have master card click on master card

if you have master card click on master card

14. Select Visa if you can via card

Select Visa if you can via card

15. Click on the Card Number and fill the card number

Click on the Card Number and fill the card number

16. Click on CVN number that write in the back of the card

Click on CVN number that write in the back of the card

17. Click on pay to process the payment

Click on pay to process the payment

You Product will be reach out for your home with in next 3-4 working days



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;