Privacy Policy

Information We Collect

When you engage with our courses, we may collect certain information about you, including:

  • Personal identification information (such as your name, email address, and phone number) provided voluntarily by you during the registration or enrollment process.
  • Payment and billing information necessary to process your course purchases, securely handled by trusted third-party payment processors.
  • Usage information, such as course progress, completion data, and quiz results, collected to personalize and improve your learning experience.
  • Device and browser information, including IP address, browser type, and operating system, gathered automatically using cookies and similar technologies.

Use of Information

We may use the collected information for the following purposes:

  • To provide access to and deliver the courses you have enrolled in, including updates and communications related to your learning journey.
  • To personalize your learning experience and recommend relevant courses based on your preferences and progress.
  • To communicate with you regarding course-related information, updates, and support.
  • To analyze and improve our courses, services, and user experience based on your feedback and interactions.
  • To detect and prevent fraudulent activities, misuse of our services, and ensure the security and integrity of our platform.

Information Sharing

We respect your privacy and do not sell, trade, or otherwise transfer your personal information to third parties without your consent, except in the following circumstances:

  • Trusted service providers: We may engage third-party service providers who assist us in delivering our courses, processing payments, and supporting our platform. These providers are contractually obligated to handle your data securely and confidentially.
  • Legal requirements: We may disclose your information if required to do so by law or in response to valid legal requests or orders.

Data Security

We implement industry-standard security measures to protect your personal information from unauthorized access, disclosure, alteration, or destruction. However, please be aware that no method of transmission over the internet or electronic storage is 100% secure, and we cannot guarantee absolute security.

Cookies and Tracking Technologies

We use cookies and similar technologies to enhance your learning experience, analyze course usage patterns, and gather information about your preferences and interactions with our platform. You have the option to manage or disable cookies through your browser settings, but this may limit certain features and functionality of our courses.

Changes to the Privacy Policy

We reserve the right to update or modify this Privacy Policy at any time. Any changes will be posted on this page with a revised “last updated” date. We encourage you to review this Privacy Policy periodically to stay informed about how we collect, use, and protect your information.

Contact Us

If you have any questions, concerns, or requests regarding our Privacy Policy or the handling of your personal information, please contact us using the information provided on

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;