Robotics Unit1-Compressed
Robotics Unit1-Compressed
What is a Robot ??
Answer - DANGEROUS
3. Which of the following are Subsystem
the subsystems of a robotic
system
a) Motion Subsystem
b) Recognition Subsystem
c) Control Subsystem
d) All of the above
Subsystem
Subsystem
Control Subsystem
3. Which of the following
are the subsystems of a
robotic system
a) Motion Subsystem
b) Recognition Subsystem
c) Control Subsystem
d) All of the above
Motion Subsystem
Recognition Subsystem
4. Write an instruction to turn OFF the LED
connected to pin 3. _.
1)digitalwrite(3,LOW);
2) digitalWrite(3,LOW)
3) digitalWrite(3,ON);
4) digitalWrite(3,LOW);
5) DigitalWrite(3,LOW);
4. Write an instruction to turn OFF the LED
connected to pin 3. _.
1)digitalwrite(3,LOW);
2) digitalWrite(3,LOW)
3) digitalWrite(3,ON);
4) digitalWrite(3,LOW);
5) DigitalWrite(3,LOW);
5. Binary equivalent of 6 is _
Answer
Practice question-
Binary equivalent of 10 is _
Binary equivalent of 10 is
Answer
6. Write an instruction to ON the display connected to
pin 13. _
1)digitalWrite(13,ON);
2) digitalwrite(13,HIGH);
3) digitalWrite(13,HIGH);
4) DigitalWrite(13,HIGH);
5) DigitalWrite(13,ON);
6. Write an instruction to ON the display connected to
pin 13. _
Answer -
1)digitalWrite(13,ON);
2) digitalwrite(13,HIGH);
3) digitalWrite(13,HIGH);
4) DigitalWrite(13,HIGH);
5) DigitalWrite(13,ON);
7. In Arduino boards, the Analog pins marked from
A0 to A5 are used as _.
a) Ground
b) Input
c) Output
d) Power
7. In Arduino boards, the Analog pins marked from
A0 to A5 are used as _.
a) Ground
b) Input
c) Output
d) Power
INPUT PINS
8.State whether following statement is true/false
Statement: Sensors are output devices.
1) Robotics
2) Automation
3) Industrial automation
4) Controller system
10. Milk Processing Industry is an example of
_ system.
1) Robotics
2) Automation
3) Industrial automation
4) Controller system
11. State the laws of robotics.
In 1941 and 1942, Isaac Asimov formulated the Three Laws of Robotics, and in the process
coined the word "robotics".
1.A robot may not injure a human being, or, through inaction, allow a human being to come to
harm.
2. A robot must obey the orders given to it by human beings unless that is in conflict with the
first
law.
3.A robot must protect its own existence as long as such protection does not conflict with the
First or Second Law.
1)
2)
3)
Answer
1) Definition- ?
1) Types- ?
Answer -
1) Hydraulic motors.
2) Pneumatic Control Valve.
3) DC Motor.
4) Servo Motors.
14. Identify the errors
in the following
program.
void setup()
{
pinMode(13,OUTPUT
);
}
Void Loop()
digitalWrite(13,high);
delay(1000);
digitalwrite(13,LOW);
delay(1000)
}
Answer-
void setup()
{
pinMode(13,OUTPUT);
}
void loop()
{
digitalWrite(13,HIGH);
delay(1000);
digitalWrite(13,LOW);
delay(1000);
}
15. Write a flowchart and Arduino program to glow
an LED on detection of motion of a body using
Tinker cad.
1)Components required ?
2)Flowchart ?
3)Tinkercad Simulation?
4)Code?
15. Write a flowchart and Arduino program to glow
an LED on detection of motion of a body using
Tinker cad.
Collect Information
from PIR Sensor
YES
If PIR = 1?
Turn On LED
NO
End
3)Tinkercad Simulation?
3)Code?
a) Declaration
b) Setup
c) loop - if else statement.
Answer -
a) Declaration
int PIRSensor = 2;
int LED = 13;
b) Setup -
void setup()
{
Serial.begin(9600);
Serial.println("Serial Working");
pinMode(PIRSensor, INPUT);
pinMode(LED, OUTPUT);
}
c) loop - if else statement.
void loop()
if (sensorStatus == 1)
digitalWrite(LED, LOW);
Serial.println("Motion Ended!");
}
else
digitalWrite(LED,
HIGH);
Serial.println("Motion
Detected!");
16. Integrate subsystem to implement AND operation
and verify the truth table.
Start
YES If button1
&& button 2
is HIGH ?
Turn On LED
NO
End
4) Hardware Simulation.
5) Code.
1)Declaration
2)Setup
3)Loop if else statement
Answer -
1)Declaration
int buttonPin1 = 2;
int buttonPin2 =
3; int LEDred = 8;
int buttonStatus1 = 0;
int buttonStatus2 =
0;
2) Setup
void setup()
{ pinMode(LEDred,
OUTPUT);
pinMode(buttonPin1, INPUT);
pinMode(buttonPin2,
INPUT);
}
1) Loop if else
statement
void loop(){
buttonStatus1 = digitalRead(buttonPin1);
buttonStatus2 =
digitalRead(buttonPin2);
if (buttonStatus1 == HIGH &&
buttonStatus2 == HIGH )
{
digitalWrite(LEDred, HIGH);
}
else {
digitalWrite(LEDred, LOW);
}
}
Characteristics of robotics
1. Sense perception -
The human sensory system is broken down into vision, hearing, touch, smell and taste all of
which have been or are being implemented into robotic technology.
2. Power-
Robots require an energy source, and there are many factors that go into deciding which form of
power provides the most freedom and capability for a robotic body.
3. Dexterity-
Dexterity refers to the functionality of limbs, appendages and extremities, as well as the general
range of motor skill and physical capability of a body. In robotics, dexterity is maximized where there
is a balance between sophisticated hardware and high-level programming that incorporates
environmental sensing capability.
4. Intelligence -
Innovations in the realms of computation and data mining enable the development of artificially
intelligent systems
5. Independence - Intelligence, sense, dexterity and power all converge to enable independence
Benefits of robotics
Robots Helps Humans from the Dull, Dirty, Dangerous and Dear Jobs
A u t o m a t i c Guided
Industrial Vehicles(AGVs)
Robot
Non-industrial o r Wa l k i n g R o b o t s
Special-Purpose
P a r a l l e l Robots
Robotic M a n i p u l a t o r
W h e e l e d Mobile
Robotics Robot A e r i a l
Bioinspired
Unde r w a t e r