Junior Engineering Course Part I – Senior

Wishlist Share
Share Course
Page Link
Share On Social Media

About Course

Hey there, future tech wizard! 🌟 Are you ready for an awesome adventure? Imagine diving into the exciting world of computers, robots, and amazing inventions – that’s exactly what this special course is all about!

Guess what? Our team of super-friendly teachers is here to guide you. They’re like real-life superheroes who love teaching and helping kids like you learn cool stuff. They want to see your brain grow big and strong!

So, get ready to join us on a journey filled with fun and learning. We’ll show you how to use computers to make your dreams come true. You’ll learn how to tell computers what to do through something called “coding.” It’s like teaching your robot friend some dance moves!

But that’s not all – we’ll also discover the secrets of coming up with amazing ideas. Think of it like becoming a genius inventor, just like those in your favorite stories. Our teachers will be like magical guides, helping you think in new and creative ways.

Oh, and guess what’s super cool? You’ll get to create your own games, apps, and even stories that can talk back to you! And remember, we’ll make sure you’re safe and sound while you’re having all this fun.

Parents, don’t worry! We’re here to make sure your child has the best time ever while learning incredible things. Our classroom is a happy and friendly space where everyone can feel welcome.

So, are you excited to join us? Get ready to dream big, think smart, and become a tech superstar! Let’s start this awesome journey together and explore the incredible world of technology and imagination! 🚀🤖🌈

 

 

Show More

Course Content

Exploring the Wonders of Electronics and Programming
Electronics and programming let you create cool gadgets and control them like a wizard! It's an exciting adventure! 🌟🔌🧙‍♂️🚀

  • Introduction
    00:00
  • 🌟 Sparkling Electronics Adventure
    00:00
  • 🔍 Fantastic Components Expedition
    00:00
  • 💪 Superhero Resistors
    00:00
  • 🌈 Rainbow Color Code Quest
    00:00
  • ⚡️ Capacitor Capers
    00:00
  • 🔧 Multimeter Marvels
    00:00
  • 🔎 Schematic Detective Agency
    00:00
  • 🌐 Online Simulations and Real-World Adventures
    00:00

Student Ratings & Reviews

No Review Yet
No Review Yet
Shopping Cart

Want to receive push notifications for all major on-site activities?

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;