Junior Engineering Course Part II (March – Aug 2023)

Wishlist Share
Share Course
Page Link
Share On Social Media

About Course

Calling all young engineers! Get ready for the next level of excitement and innovation in our Junior Engineering Course Part II. Dive deeper into the world of design, problem-solving, and hands-on experiments as you embark on thrilling engineering challenges. Unleash your creativity and take your engineering skills to new heights!

What Will You Learn?

  • Advanced Design Principles: Explore more advanced design principles and techniques used in engineering. Learn how to apply design thinking to create innovative solutions to engineering challenges.
  • Problem-Solving Strategies: Develop critical thinking and problem-solving skills through engaging engineering challenges. Learn how to analyze problems, break them down into manageable steps, and devise effective solutions.
  • Hands-On Experiments: Engage in a variety of hands-on experiments that allow you to apply engineering concepts and principles in a practical setting. Gain experience in conducting experiments, collecting data, and drawing conclusions.
  • Teamwork and Collaboration: Collaborate with fellow young engineers on group projects and challenges. Learn how to work effectively in teams, communicate ideas, and leverage each other's strengths to achieve common goals.
  • Technical Skills Development: Further enhance your technical skills in areas such as mechanics, electronics, structural engineering, or robotics (depending on the course curriculum). Gain hands-on experience with engineering tools and equipment.
  • Creative Problem Solving: Harness your creativity and think outside the box to come up with innovative solutions to engineering problems. Learn techniques for generating ideas, exploring multiple possibilities, and pushing the boundaries of traditional engineering.
  • Project Management: Develop project management skills by planning and executing engineering projects. Learn how to set goals, allocate resources, manage timelines, and overcome obstacles to successfully complete projects.
  • Presentation and Communication: Sharpen your presentation and communication skills by showcasing your engineering projects to peers and instructors. Learn how to effectively convey technical concepts and ideas in a clear and engaging manner.
  • Confidence and Self-Esteem: Build confidence in your engineering abilities as you tackle challenging projects and witness your ideas come to life. Develop a sense of accomplishment and pride in your engineering achievements.
  • Passion for Engineering: Cultivate a deeper passion and enthusiasm for engineering as you explore exciting engineering challenges. Discover the endless possibilities and opportunities that the field of engineering offers.

Course Content

Payments and Monthly Registration

  • How to do your payments
    00:00

Electronics Basic Components

Programming Basics

Advanced Programming

IOT Programming

Innovation Idea
Assessing kids' innovation ideas involves evaluating and analysing the creative concepts proposed by children

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;