Computer Flashcards
A robot may not injure a
human being or through
inaction, allow a human being to come to harm
Law 1
A robot must obey orders
given to it by human beings, except where such orders would conflict with a higher order law
Law 2
A robot must protect its own existence as long as such protection does not conflict with a higher order law
Law 3
A robot may not injure
humanity, or, through
inaction, allow humanity to come to harm
Zeroth Law
1942
SHORT STORY run
1950
universal automation UNIMATE
1980
NXT Lego mindstorms
1990
Sony aibo
2000
Honda ASIMO (advance step in innovative mobility)
Robot characteristics
Energy, movement, sensing, intelligence
Ideal tasks
Dangerous task, repetitive task, high precision task
Used to write the Arduino code, provides you with a text-editor like environment for you to write your code
Arduino IDE
File generated or saved using the Arduino IDE
Sketch
Two functions of Arduino sketch
void setup() and void loop()
the section of computer codes that allows the
computer to perform a specific task
functions
generally included anywhere in the program, though not required but recommended to write a description or notes in the program
Comment
Two types of comments
Single line comment, Multiline comment
starts with // symbol and anything typed within
that line will be ignored by the compiler
Single line comment
start with /* and ends with */ then anything in
between this symbols will be considered as part of the comment
Multiline comment
function is used to set up a specific pin as either digital input or digital output
pinMode( ) function
pinMode( ) Function
pinMode(pin, MODE);
- pin (specific number of the pin it is connected in the board)
- MODE (INPUT, OUTPUT)
writes either HIGH or LOW value to a digital pin
digitalWrite( ) function
digitalWrite( ) function
digitalWrite(pin, VALUE);
- pin (the pin number)
- VALUE (HIGH, LOW)
causes the program to pause for a specific period of time in miliseconds before executing the next line of codes, One second is equivalent to 1000 milliseconds
delay() Function
delay() Function
delay(milliseconds);
a passive two-way electronic components that is commonly used
to regulate the power, divide voltage or resist the flow of electric current in the circuits
Resistor
don’t generate power but only consume it
Passive
Negative
Cathode (Shorter)
Positive
Anode (Longer)
a two-lead semiconductor tiny light bulb that emits light when electric current passes through it
Light Emitting Diode (LED)
It separates two sides of breadboard, it also serves as support for Dual in-line package (DIP) chip
Ravine
This is a serial connection that runs horizontally, When building a circuit, you might need more power to supply different components connected to the board, It is usually labelled with + and – and sometimes with color code to suggest that red stripe indicates positive side and blue or green or black stripe indicates negative side
Power Rails
This allows a vertical serial connection, This is
usually where the main components of the circuit is connected, five dot columns
Terminal Strips (Column)
used to allow the piezo buzzer plays a sound
tone()Function
tone()Function
tone(pin, frequency);
- pin (pin number to which the buzzer plays the tone)
- frequency (specify the pitch of the tone in hertz, unsigned int)
must be called on one pin before calling the tone( ) on the next pin
noTone()Function
noTone()Function
noTone(pin);
- pin (pin number to which the buzzer plays the tone)
RGB LED Brightness
0 - 255
Analog Output
3, 5, 6
analogWrite()function
analogWrite(pin, brightness);
- pin (the pin number)
- brightness (0 - 255)
DP 0 to 13, DP 14 to 19
digital pins
A0 - A5
analog input pins
3, 5, 6, 9, 10, 11
analog output pins
reset, +3.3v, 5v, GND
power header