Refund Policy

Returns

We accept returns within 30 days from the date of purchase. To be eligible for a return, the course must not have been accessed or completed, and all accompanying materials must be in the same condition as when you received them. Please ensure that the course and materials are returned in their original packaging.

Refunds

Once we receive your return and inspect the item, we will notify you of the status of your refund. If your return is approved, we will initiate a refund to your original method of payment. Please note that the refund amount will exclude any shipping charges incurred during the initial purchase.

Exchanges

If you would like to exchange your course for a different one, please contact our customer support team within 30 days of receiving your order. We will provide you with further instructions on how to proceed with the exchange.

Non-Returnable Items

Certain items are non-returnable and non-refundable. These include:

  • Gift cards
  • Downloadable software products
  • Personalized or custom-made items
  • Perishable goods

Damaged or Defective Courses

In the unfortunate event that your course arrives damaged or defective, please contact us immediately. We will arrange for a replacement or issue a refund, depending on your preference and product availability.

Return Shipping

You will be responsible for paying the shipping costs for returning your course unless the return is due to our error (e.g., wrong course shipped, defective product). In such cases, we will provide you with a prepaid shipping label.

Processing Time

Refunds and exchanges will be processed within 7 business days after we receive your returned course. Please note that it may take additional time for the refund to appear in your account, depending on your payment provider.

Contact Us

If you have any questions or concerns regarding our refund policy, please contact our customer support team. We are here to assist you and ensure your learning experience with us is enjoyable and hassle-free.

 

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;