This course is going to give anyone who is interested in Robotics a Chance to learn the basics without any prior experience. The course contains content which is suited for Beginners. This course will also allow anyone to learn Entrepreneurship through your product. You would learn how to make your Robots and create a company out of it by going through, Fundamental Theory of Robotics
Introduction to Sensors & Actuators
Learn and manipulate Motor Drives
Brief about Entrepreneurship
Brief about Market Research
Brief about Product DevelopmentThe course is uniquely designed with a blend of Business theory with the technical theory of Robotics Engineering suitable for any Budding Entrepreneur who wants to know the ins and outs of the field. You will get simple and sophisticated Quiz questions to test your understanding. So Let's get started! Who this course is for:Anyone who wants to learn Robotics
Anyone who wants to study Robotics & Engineering
Anyone who want to learn Entrepreneurship
Anyone who wants to create a Company
Anyone who wants to learn Product Development
Anyone who wants to learn Marketing strategies
Facilities
Location
Start date
Online
Start date
Different dates availableEnrolment now open
About this course
You will be able to build simple robots
You will be able to understand how businesses work
You will be able to create a product
You will learn Product development
You will learn to control simple motors
You will be able to market your product
You will be able to go to advanced technical courses after this course.
Anyone who wants to learn Robotics
Anyone who wants to study Robotics & Engineering
Anyone who want to learn Entrepreneurship
Anyone who wants to create a Company
Anyone who wants to learn Product Development
Anyone who wants to learn Marketing strategies
Questions & Answers
Add your question
Our advisors and other users will be able to reply to you
We are verifying your question adjusts to our publishing rules. According to your answers, we noticed you might not be elegible to enroll into this course, possibly because of: qualification requirements, location or others. It is important you consult this with the Centre.
Thank you!
We are reviewing your question. We will publish it shortly.
Or do you prefer the center to contact you?
Reviews
Have you taken this course? Share your opinion
This centre's achievements
2021
All courses are up to date
The average rating is higher than 3.7
More than 50 reviews in the last 12 months
This centre has featured on Emagister for 6 years
Subjects
Engineering
Systems
3D
Product Development
Autodesk
3d training
3d design
Market Research
Marketing
Design
Testing
Market
Entrepreneurship
Course programme
Introduction
1 lecture02:08Introduction
Introduction
1 lecture02:08IntroductionIntroductionIntroductionIntroductionIntroduction
Basics of Robotics
2 lectures04:41What is Robotics?How do Robot Systems work?
Basics of Robotics
2 lectures04:41What is Robotics?How do Robot Systems work?What is Robotics?What is Robotics?What is Robotics?What is Robotics?How do Robot Systems work?How do Robot Systems work?How do Robot Systems work?How do Robot Systems work?
Main Components of Robots
6 lectures27:00What is a Sensor?Brain of the RobotArduino MCU detailed IntroductionProcessor and Controller brieflyWhat are Actuators?What are Control Systems?
Main Components of Robots
6 lectures27:00What is a Sensor?Brain of the RobotArduino MCU detailed IntroductionProcessor and Controller brieflyWhat are Actuators?What are Control Systems?What is a Sensor?What is a Sensor?What is a Sensor?What is a Sensor?Brain of the RobotBrain of the RobotBrain of the RobotBrain of the RobotArduino MCU detailed IntroductionArduino MCU detailed IntroductionArduino MCU detailed IntroductionArduino MCU detailed IntroductionProcessor and Controller brieflyProcessor and Controller brieflyProcessor and Controller brieflyProcessor and Controller brieflyWhat are Actuators?What are Actuators?What are Actuators?What are Actuators?What are Control Systems?What are Control Systems?What are Control Systems?What are Control Systems?
Motor Drive and Control
2 lectures13:10What are Motor Drives?Testing the DC Motor and L293D introduction
Motor Drive and Control
2 lectures13:10What are Motor Drives?Testing the DC Motor and L293D introductionWhat are Motor Drives?What are Motor Drives?What are Motor Drives?What are Motor Drives?Testing the DC Motor and L293D introductionTesting the DC Motor and L293D introductionTesting the DC Motor and L293D introductionTesting the DC Motor and L293D introduction
Disciplines Involved in Robotics
1 lecture07:30What disciplines are involved in Robotics?
Disciplines Involved in Robotics
1 lecture07:30What disciplines are involved in Robotics?What disciplines are involved in Robotics?What disciplines are involved in Robotics?What disciplines are involved in Robotics?What disciplines are involved in Robotics?
Entrepreneurship | Product Development | Marketing
3 lectures37:44What is Product Development? | How you can develop your next product?What is Market Research? Importance of Market Research for startupsHow to fix the design and functionalities?
Entrepreneurship | Product Development | Marketing
3 lectures37:44What is Product Development? | How you can develop your next product?What is Market Research? Importance of Market Research for startupsHow to fix the design and functionalities?What is Product Development? | How you can develop your next product?What is Product Development? | How you can develop your next product?What is Product Development? | How you can develop your next product?What is Product Development? | How you can develop your next product?What is Market Research? Importance of Market Research for startupsWhat is Market Research? Importance of Market Research for startupsWhat is Market Research? Importance of Market Research for startupsWhat is Market Research? Importance of Market Research for startupsHow to fix the design and functionalities?How to fix the design and functionalities?How to fix the design and functionalities?How to fix the design and functionalities?
Google Sketchup Lessons
4 lectures36:15Google Sketchup introductionGet Familiar with the Google Sketchup WorkspaceDesign your First home | Tools and tricks3D Design Zimo - our BOX Robot
Google Sketchup Lessons
4 lectures36:15Google Sketchup introductionGet Familiar with the Google Sketchup WorkspaceDesign your First home | Tools and tricks3D Design Zimo - our BOX RobotGoogle Sketchup introductionGoogle Sketchup introductionGoogle Sketchup introductionGoogle Sketchup introductionGet Familiar with the Google Sketchup WorkspaceGet Familiar with the Google Sketchup WorkspaceGet Familiar with the Google Sketchup WorkspaceGet Familiar with the Google Sketchup WorkspaceDesign your First home | Tools and tricksDesign your First home | Tools and tricksDesign your First home | Tools and tricksDesign your First home | Tools and tricks3D Design Zimo - our BOX Robot3D Design Zimo - our BOX Robot3D Design Zimo - our BOX Robot3D Design Zimo - our BOX Robot
Autodesk FUSION 360 & Working in Fritzing
9 lectures01:02:55Autodesk Fusion 360 IntroductionGet familiar with Fusion 360 WorkspaceSkippy Fusion 360 DesignZimo Design Sneak Peak - Fusion 360Creating the ZIMO Design using Fusion 360How to download Fritzing Software?Fritzing - Electronics Prototyping first lookSkippy Schematics ExplanationComponents Connection Fritzing explanation
Autodesk FUSION 360 & Working in Fritzing first Robot.
The code is given below for your ease:
// Program for Obstacle Avoidance Robot Skippy
//Defining the pins before the setup
#define echopin 9
#define trigpin 8
#define motorLeft2 3
#define motorRight2 5
#define motorLeft1 6
#define motorRight1 7
int maximumRange = 30;
long duration, distance;
void setup() {
Serial.begin (9600); // setting up the serial communication
pinMode (trigpin, OUTPUT); // setting the Input / Output in setup
pinMode (echopin, INPUT );
pinMode (motorLeft1, OUTPUT); // pins for motor movement
pinMode (motorLeft2, OUTPUT);
pinMode (motorRight1, OUTPUT);
pinMode (motorRight2, OUTPUT);
}
void loop...
Additional information
You should have little experience with Electronics
You should have passion for Making
You should have an interest for Engineering
You should know little bit of Programming