Next Worksop will be on 1st of October

Days
Hours
Minutes
Seconds

360 Labs partnered with TechSpark Studio to organize a STEM education workshop aimed at students. During the workshop, students were provided with the exciting opportunity to create impressive applications using the innovative 360 Labs gadget engineering box. To enhance the value of STEM education for students in Sri Lanka, MagicBit joined forces with the 360 Labs team. A special highlight of the event was the participation of young entrepreneur Master Nethila Namasath, who shared his entrepreneurial journey and insights with the attendees. The event, titled “Cinnamon Chat with Nethila,” was a convergence of minds focused on fostering STEM education for children, highlighting themes such as DIY building, makerspaces, innovation, and creativity.

Learn About Engineering in Practice

Free Gadget Engineer Box For every Participant

Kids will learn Engineering

By Teaching the techniques of Engineering concepts, they learn.

Learn about team work

By doing together work, they experience the team work !

Register now and witness the amazing opportunity of experiencing the Hands-on experience in Engineering !

Location: Trace Expert City Maradhana ( Click here to view the location )

Time: 9:00 AM – 12:00 PM

Date : 25th Friday August 

Age: 7 -15 ( Parents are also invited )

Fee: 1500/= ( A Free Gadget Engineer Pack )

After the registration is completed we will separately add you to a WhatsApp group

Registrations Are Closed ( Sep 25 Workshop )

Next Worksop will be on 1st of October

Days
Hours
Minutes
Seconds

Partnered Organisations

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;