Terms and Conditions

Use of the Services

a. You must be at least 11 years old to use our services or enroll in courses.

b. You are responsible for maintaining the confidentiality of your account information, including your username and password.

c. You agree to provide accurate and current information during the registration and enrollment process.

d. You may not use our services for any unlawful or unauthorized purposes.

Course Information and Pricing

a. We strive to provide accurate course descriptions, outlines, and pricing information. However, we do not guarantee the accuracy or completeness of such information.

b. Prices are subject to change without notice. Any promotions or discounts are valid for a limited time and may be subject to additional terms and conditions.

Enrollment and Payments

a. By enrolling in a course on our platform, you are making an offer to purchase the selected course.

b. We reserve the right to refuse or cancel any enrollment for any reason, including but not limited to course availability, errors in pricing or course information, or suspected fraudulent activity.

c. You agree to provide valid and up-to-date payment information and authorize us to charge the total course fee, including applicable taxes, to your chosen payment method.

d. We use trusted third-party payment processors to handle your payment information securely. We do not store or have access to your full payment details.

Access and Availability

a. We will make reasonable efforts to ensure uninterrupted access to the courses you have enrolled in.

b. Course access and availability may be subject to technical issues, scheduled maintenance, or circumstances beyond our control.

Refunds and Cancellations

a. Our Refund Policy governs the process and conditions for seeking refunds for courses. Please refer to the policy provided on our website for more information.

b. Refunds may be provided in certain circumstances, such as if you are dissatisfied with the course content or if the course is canceled by us.

Intellectual Property

a. All content and materials provided in our courses, including but not limited to text, images, videos, and resources, are protected by intellectual property rights and are the property of courses.360labssl.com or its licensors.

b. You may not use, reproduce, distribute, or modify any course content without our prior written consent.

Limitation of Liability

a. In no event shall courses.360labssl.com, its directors, employees, or affiliates be liable for any direct, indirect, incidental, special, or consequential damages arising out of or in connection with your use of our services or the purchase and use of our courses.

b. We make no warranties or representations, express or implied, regarding the quality, accuracy, or suitability of the courses offered on our platform.

Amendments and Termination

a. We reserve the right to modify, update, or terminate these Terms and Conditions at any time without prior notice. It is your responsibility to review these terms periodically for any changes.

b. We may terminate or suspend your access to our services at any time, with or without cause or notice.

Contact Us

If you have any questions, concerns, or requests regarding our Terms and Conditions or the use of our services, please contact us using the information provided on our website.

 

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;