Robotics & AI Course : 3 Months Course ( Online )

රු8,600.00

Discover AI & Robotics: Unleash Your Creativity!

Uncover the fascinating world of Artificial Intelligence and Robotics with our online course designed for curious minds aged 16 and above. Dive into the fundamentals of AI, explore the mechanics of robots, and learn to program them to perform tasks. Gain practical experience through hands-on projects and discussions on ethics and career pathways. Join us and embark on a journey of innovation and discovery!

Category:

Welcome to Our AI and Robotics Course for Teens!

Are you fascinated by the world of Artificial Intelligence and Robotics? Do you dream of creating innovative solutions that can change the way we live and work? Look no further! At 360 Labs, we’re excited to introduce our comprehensive online course designed especially for curious minds aged 16 and above.

Course Overview:

Our AI and Robotics course is tailored to empower young enthusiasts with the knowledge and skills needed to thrive in this rapidly evolving field. Whether you’re a seasoned coder or just starting your journey, our curriculum is structured to accommodate learners of all levels. Guided by industry experts, you’ll embark on an immersive learning experience that combines theory with hands-on practical’s, equipping you with the tools to tackle real-world challenges.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

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;