SlideShare a Scribd company logo
CDI 10 ADVANCED
Term 3
Revision Notes
Assessment Scope
 Lesson 1 (not series & parallel)
 Lesson 4
 Lesson 6
 Lesson 7
 Electronic schematic
 Diagram and labelling
 Flowchart
 Schematic diagram
 Programming tips
Check and
Learn all
Calculation
Exam specifications
Lesson 1
Note: Learn all the Key Vocabulary, words with meanings.
Electricity : Is the flow of electrons through a conductor.
Good conductors : Allow electricity to flow. E.g. metals like copper.
Bad conductors: Do not allow electricity to flow. E.g. plastic or wood.
Electronics: Control the electrical circuits.
Example:
In a microwave, electricity provides the power and electronic components control
the electrical circuit for cooking.
Electric circuit : Group of electronic components connected by
conductors for current flow.
Voltage
source
(Battery)
Conductive
Path (Wires)
Load
(Bulb)
It causes the
current to flow
through circuit.
Consumes electric
power.
Through which current flows.
Signal
For receiving and sending information
• Analog Signal
This signal has infinite an number of values.
Stored in continuous form between
minimum and maximum value.
Examples
• Brightness of sun
• Room temperature
• Speaker
• Mixing colors
• Old radio
• Old photograph
• Digital Signal
These signals have a finite set of possible values.
(0V or 5V)
Stored in coded form (0,1) (min., max. )
Examples
• Light switch in class room.
• Power button of phone.
• Game controller buttons
• Calculator screen
• Digital camera
• Digital music player
Ohm’s Law
• Voltage is the
difference in charge
between two points.
• Measured in Volts(V).
• Resistance is a
material’s tendency to
resist the flow of
charge (current).
• Measured in Ohms(Ω).
• Current is the rate at
which charge is
flowing.
• Measured in
Amperes(A).
Note: Learn to solve
problems using Ohms
Law to calculate
Voltage(V) OR
Current(A) OR
Resistance(R)
Calculation
Resistor: An electronic component used for electrical resistance in electric
circuit. Resistors are used to reduce current flow, adjust signal levels or
divide voltages. Resistance value is measured by Ohm Ω
Tolerance: Is the maximum electrical or mechanical variations plus or
minus in the specifications tolerated without affecting the operations of
the device.
Resistance tolerance: Is how much the resistance of resistor may vary
from its stated value. Less tolerance leads to high accuracy value and
more tolerance leads less accuracy value.
Breadboard: A solderless board which is used to make temporary
circuits.
Multimeter: Is an electronic measuring instrument with many
measurement functions in one unit.
Continuity Test: A test using multimeter to check for conductivity of
materials and electrical connections are made or not.
Calculation
Note: Learn how to find the
value and tolerance of a
resistor using the colour code.
Embedded systems : It is a specialized computer system with a specific function within a larger
mechanical or electrical system.
Examples -
Air conditioner in car / seatbelt warning in car / garden watering system.
Microcontroller: An embedded system uses a controller to operate.
A microcontroller is the main control unit of any automatic system
or device. These systems has three units.
1. An input unit is for collecting signals and needed data.
Example Hot weather.
2. A control unit (Microcontroller) is for processing the received signals.
Example Controlling the temperature.
3. An output unit is sending out signals.
Example Cool down the car interior.
Lesson 4
Note: Learn all the Key Vocabulary, words with meanings.
Push button: Is a switch with 4 pins with 2 electrical connections.
Pin 1 & 2 are connected with each other.
Pin 3 & 4 are connected with each other.
Push button when pressed will switch to 2 states, open and close.
Open state (OFF or logic 0 state): In this state the push button is not
pressed and no current flows.
Close state (ON or logic 1 state): In this state the push button is
pressed and current flows.
Lesson 6
Note: Learn all the key vocabulary, words with meanings.
Analog signals:
They have infinite numbers to represent their value.
Arduino digitizes analog signals using 10 digits having 1024 levels.
The level value is between 0 to 1023.
Potentiometer:
This is a three-terminal variable resistor used for generating
an analog signal.
Calculation
Note: Learn how to calculate the
Level Value = voltage
X 1023
5
Lesson 7
Note: Learn all the Key Vocabulary, words with meanings.
PWM Signal: Pulse Width Modulation is a technique for
generating analog signals using digital means.
Duty Cycle (D):
The ratio between the ON time divided by the time period.
RBG LED: Consists of three LED’s: Red, Green, Blue
connected to one package to display different colors.
Calculation
Note: Learn how to calculate
the frequency f = 1 / T hertz.
Electronic
Component
Schematic Symbol
Note: Learn all the electronic component
schematic symbols along with their functions.
Example: OR
This is a Resistor, used to reduce current flow
or adjust signal levels or divide voltages.
ElectricalSchematic
Electronic Component Schematic Symbol
Resistor OR
Push Button
Potentiometer
RGB
Diagram and Labelling
Example
Learn how to
label a diagram.
Check for the
instructions in
your question
paper and label
the diagram
accordingly.
Example
Note: A product suggestion or a program will be given and students will be required to draw a
suitable flowchart to indicate the flow process and write any associated description or notes.
Flow Chart
Schematic Diagram
Learn to complete an
Arduino Board with
• Pin number
Example D1 or A5
• Component Symbols
Example
• Component Labels.
ExampleR1 10Ω
Programming Tips
SIGNALS
A physical quantity that represents information
DIGITAL
A signal with patterns of bits 0 or 1
Electronic Component Used:
PUSH BUTTON
ANALOG
A signal with infinite numbers.
Arduino can digitizes analog signals (1024 levels)
The level values are from 0 – 1023
Electronic Component Used: POTENTIOMETER
Write the Digital Signal
Format: digitalWrite(pin#,value);
Value HIGH or LOW
Example: digitalWrite(7,HIGH);
Format: pinMode(pin#, MODE);
Example: pinMode(7,INPUT);
pinMode(7,OUTPUT);
Read the Analog Signal
Format: analogRead(pin#);
Example: analogRead(7);
Read the Digital Signal
Format: digitalRead(pin#);
Example: digitalRead(7);
Write the Analog Signal
Format: analogWrite(pin#,value);
Value Between 0 to 255
Example: analogWrite(7,127);
DIGITAL READ AND WRITE ANALOG READ AND WRITE
Statement to
Initialize Arduino
pins for INPUT or
OUTPUT
Programming Tips (CONTINUED)
Statement Explanation
Serial.begin(9600);
while(!Serial);
Serial communication with baud rate 9600
Loop to execute until the serial communication is there
void setup() A Function to run the code once
void loop() A Function to run the code repeatedly
int
Float
Integer variable declaration example  int count = 0;
Float variable declaration example  float value = 5.5;
Serial.print();
Serial.println();
Statement used to print/display a value or message
Example: Serial.println(“Hello”);
Serial.println(value);
delay(milliseconds); A Function pause or wait for amount of time in milliseconds.
Example: delay(100); // if you are given seconds then convert to milliseconds.
if (condition)
{ //true part
}
else
{//false part
}
Decision statement. Condition is checked. If the condition is true the true part executes. It
the condition is false the false part executes.
Example: if (digitalRead (7) == HIGH)
{ Serial.println(“Button is not pressed”); }
else
{ Serial.println(“Button is pressed”);

More Related Content

DOCX
Key vocabulary 10 adv
PPTX
10 11_gen_revision_notes_term_3
PPTX
11 adv revision_notes_term_3
PPTX
Cdi t1 10_gen_unit3_revision_notes_eot
DOCX
11 ADV KEY VOCABULARY
PPTX
Cdi t1 10_adv_unit3_revision_notes_eot
PPTX
Section 6
PPTX
Cdi t1 12_gen_unit1&2_revision_notes_eot
Key vocabulary 10 adv
10 11_gen_revision_notes_term_3
11 adv revision_notes_term_3
Cdi t1 10_gen_unit3_revision_notes_eot
11 ADV KEY VOCABULARY
Cdi t1 10_adv_unit3_revision_notes_eot
Section 6
Cdi t1 12_gen_unit1&2_revision_notes_eot

What's hot (20)

PPTX
Section 5b&c capacitors pn junction
PPTX
Section 5 11 a &12 g
PPTX
What is electronics?
PDF
The fundemental of electronics ebook
PPTX
Basic concepts of practical electronics
PDF
Build your own electronics lab
PPT
Advanced Electronics - What is electronics?
PPTX
Section 1;11&12
PPTX
Cdi t1 11_gen_unit1&2_revision_notes_eot
PPT
Digital electronics
PPTX
Basic workshop practice (electronics group) 17005
PPTX
Resistor
PDF
Electronics Project Book
PPTX
Unit2 s3 electronic calculations 2
PPT
Sperry Electricity Basics
PDF
Construction of digital voltmeter by Bapi Kumar Das
PDF
Basic Electronics components
PPT
Electronics
PPTX
Automatic DC Fan using LM35 (English version)
PPTX
Basic concept of electronics.
Section 5b&c capacitors pn junction
Section 5 11 a &12 g
What is electronics?
The fundemental of electronics ebook
Basic concepts of practical electronics
Build your own electronics lab
Advanced Electronics - What is electronics?
Section 1;11&12
Cdi t1 11_gen_unit1&2_revision_notes_eot
Digital electronics
Basic workshop practice (electronics group) 17005
Resistor
Electronics Project Book
Unit2 s3 electronic calculations 2
Sperry Electricity Basics
Construction of digital voltmeter by Bapi Kumar Das
Basic Electronics components
Electronics
Automatic DC Fan using LM35 (English version)
Basic concept of electronics.
Ad

Similar to 10 adv _revision_notes_term_3 (20)

PDF
Arduino Basics
PPTX
Electronics 101 for software developers
PPT
computer_programming for grade 12 learners
PDF
Making things sense - Day 1 (May 2011)
PPTX
Intro_to_Arduino_-_v30.pptx
PPTX
arduino-1.pptxbxavvgAzccgzs fla sh ga aana
PPTX
Arduino Workshop Slides
PPTX
Arduino slides
PPT
Intro_to_Arduino_with_coding_explained.ppt
PPT
IntrotoArduino.ppt
PPT
Intro_to_Arduino_v31_a_workshop_for_beginners
PPT
IntrotoArduino.ppt
PPT
Introductory level to Arduino programming
PPT
Intro_to_Arduino_-_v30dadasdadadadaasda.ppt
PPT
Intro to arduino
PPT
Arduino Introduction.ppt
PPT
Intro_to_Arduino_-_v30.ppt
PPT
Intro_to_Arduino_-_v30 (3).ppt
DOCX
Arduino PAPER ABOUT INTRODUCTION
PPTX
Arduino Workshop (3).pptx
Arduino Basics
Electronics 101 for software developers
computer_programming for grade 12 learners
Making things sense - Day 1 (May 2011)
Intro_to_Arduino_-_v30.pptx
arduino-1.pptxbxavvgAzccgzs fla sh ga aana
Arduino Workshop Slides
Arduino slides
Intro_to_Arduino_with_coding_explained.ppt
IntrotoArduino.ppt
Intro_to_Arduino_v31_a_workshop_for_beginners
IntrotoArduino.ppt
Introductory level to Arduino programming
Intro_to_Arduino_-_v30dadasdadadadaasda.ppt
Intro to arduino
Arduino Introduction.ppt
Intro_to_Arduino_-_v30.ppt
Intro_to_Arduino_-_v30 (3).ppt
Arduino PAPER ABOUT INTRODUCTION
Arduino Workshop (3).pptx
Ad

More from CDI Aljeer (18)

DOCX
Build a story draft-2
PDF
Project design space information 2017 18
PPTX
12 a pneumatic systems
PDF
Section 1 :- Mechanical systems-
PDF
Sample Exam 12 a
PDF
Sample Exam 11 a
PDF
Sample Exam 11 g
PDF
Sample Exam 12 g
PDF
Section 4
PPTX
Cdi t1 11_adv_unit1&2_revision_notes_eot
PPTX
Cdi t1 12_adv_unit2_revision_notes_eot
PDF
Cdi pd fusion 360 hyperloop
PPT
Section 3 adv 12
PPTX
Section 2 basic hydraulic system
PDF
Physical properties
PDF
Section1; Mechanical Properties
DOCX
Schematic f 11 adv
DOCX
Schematic sdfsdf 11 adv
Build a story draft-2
Project design space information 2017 18
12 a pneumatic systems
Section 1 :- Mechanical systems-
Sample Exam 12 a
Sample Exam 11 a
Sample Exam 11 g
Sample Exam 12 g
Section 4
Cdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eot
Cdi pd fusion 360 hyperloop
Section 3 adv 12
Section 2 basic hydraulic system
Physical properties
Section1; Mechanical Properties
Schematic f 11 adv
Schematic sdfsdf 11 adv

Recently uploaded (20)

PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Complications of Minimal Access Surgery at WLH
PPTX
master seminar digital applications in india
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPTX
Lesson notes of climatology university.
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Pre independence Education in Inndia.pdf
PDF
Computing-Curriculum for Schools in Ghana
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Sports Quiz easy sports quiz sports quiz
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Insiders guide to clinical Medicine.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
STATICS OF THE RIGID BODIES Hibbelers.pdf
Complications of Minimal Access Surgery at WLH
master seminar digital applications in india
O5-L3 Freight Transport Ops (International) V1.pdf
Microbial diseases, their pathogenesis and prophylaxis
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Lesson notes of climatology university.
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Pre independence Education in Inndia.pdf
Computing-Curriculum for Schools in Ghana
102 student loan defaulters named and shamed – Is someone you know on the list?
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Supply Chain Operations Speaking Notes -ICLT Program
Final Presentation General Medicine 03-08-2024.pptx
Sports Quiz easy sports quiz sports quiz
2.FourierTransform-ShortQuestionswithAnswers.pdf
Insiders guide to clinical Medicine.pdf
Microbial disease of the cardiovascular and lymphatic systems

10 adv _revision_notes_term_3

  • 1. CDI 10 ADVANCED Term 3 Revision Notes
  • 2. Assessment Scope  Lesson 1 (not series & parallel)  Lesson 4  Lesson 6  Lesson 7  Electronic schematic  Diagram and labelling  Flowchart  Schematic diagram  Programming tips Check and Learn all Calculation
  • 4. Lesson 1 Note: Learn all the Key Vocabulary, words with meanings. Electricity : Is the flow of electrons through a conductor. Good conductors : Allow electricity to flow. E.g. metals like copper. Bad conductors: Do not allow electricity to flow. E.g. plastic or wood. Electronics: Control the electrical circuits. Example: In a microwave, electricity provides the power and electronic components control the electrical circuit for cooking.
  • 5. Electric circuit : Group of electronic components connected by conductors for current flow. Voltage source (Battery) Conductive Path (Wires) Load (Bulb) It causes the current to flow through circuit. Consumes electric power. Through which current flows.
  • 6. Signal For receiving and sending information • Analog Signal This signal has infinite an number of values. Stored in continuous form between minimum and maximum value. Examples • Brightness of sun • Room temperature • Speaker • Mixing colors • Old radio • Old photograph • Digital Signal These signals have a finite set of possible values. (0V or 5V) Stored in coded form (0,1) (min., max. ) Examples • Light switch in class room. • Power button of phone. • Game controller buttons • Calculator screen • Digital camera • Digital music player
  • 7. Ohm’s Law • Voltage is the difference in charge between two points. • Measured in Volts(V). • Resistance is a material’s tendency to resist the flow of charge (current). • Measured in Ohms(Ω). • Current is the rate at which charge is flowing. • Measured in Amperes(A). Note: Learn to solve problems using Ohms Law to calculate Voltage(V) OR Current(A) OR Resistance(R) Calculation
  • 8. Resistor: An electronic component used for electrical resistance in electric circuit. Resistors are used to reduce current flow, adjust signal levels or divide voltages. Resistance value is measured by Ohm Ω Tolerance: Is the maximum electrical or mechanical variations plus or minus in the specifications tolerated without affecting the operations of the device. Resistance tolerance: Is how much the resistance of resistor may vary from its stated value. Less tolerance leads to high accuracy value and more tolerance leads less accuracy value. Breadboard: A solderless board which is used to make temporary circuits. Multimeter: Is an electronic measuring instrument with many measurement functions in one unit. Continuity Test: A test using multimeter to check for conductivity of materials and electrical connections are made or not. Calculation Note: Learn how to find the value and tolerance of a resistor using the colour code.
  • 9. Embedded systems : It is a specialized computer system with a specific function within a larger mechanical or electrical system. Examples - Air conditioner in car / seatbelt warning in car / garden watering system. Microcontroller: An embedded system uses a controller to operate. A microcontroller is the main control unit of any automatic system or device. These systems has three units. 1. An input unit is for collecting signals and needed data. Example Hot weather. 2. A control unit (Microcontroller) is for processing the received signals. Example Controlling the temperature. 3. An output unit is sending out signals. Example Cool down the car interior.
  • 10. Lesson 4 Note: Learn all the Key Vocabulary, words with meanings. Push button: Is a switch with 4 pins with 2 electrical connections. Pin 1 & 2 are connected with each other. Pin 3 & 4 are connected with each other. Push button when pressed will switch to 2 states, open and close. Open state (OFF or logic 0 state): In this state the push button is not pressed and no current flows. Close state (ON or logic 1 state): In this state the push button is pressed and current flows.
  • 11. Lesson 6 Note: Learn all the key vocabulary, words with meanings. Analog signals: They have infinite numbers to represent their value. Arduino digitizes analog signals using 10 digits having 1024 levels. The level value is between 0 to 1023. Potentiometer: This is a three-terminal variable resistor used for generating an analog signal. Calculation Note: Learn how to calculate the Level Value = voltage X 1023 5
  • 12. Lesson 7 Note: Learn all the Key Vocabulary, words with meanings. PWM Signal: Pulse Width Modulation is a technique for generating analog signals using digital means. Duty Cycle (D): The ratio between the ON time divided by the time period. RBG LED: Consists of three LED’s: Red, Green, Blue connected to one package to display different colors. Calculation Note: Learn how to calculate the frequency f = 1 / T hertz.
  • 13. Electronic Component Schematic Symbol Note: Learn all the electronic component schematic symbols along with their functions. Example: OR This is a Resistor, used to reduce current flow or adjust signal levels or divide voltages. ElectricalSchematic Electronic Component Schematic Symbol Resistor OR Push Button Potentiometer RGB
  • 14. Diagram and Labelling Example Learn how to label a diagram. Check for the instructions in your question paper and label the diagram accordingly.
  • 15. Example Note: A product suggestion or a program will be given and students will be required to draw a suitable flowchart to indicate the flow process and write any associated description or notes. Flow Chart
  • 16. Schematic Diagram Learn to complete an Arduino Board with • Pin number Example D1 or A5 • Component Symbols Example • Component Labels. ExampleR1 10Ω
  • 17. Programming Tips SIGNALS A physical quantity that represents information DIGITAL A signal with patterns of bits 0 or 1 Electronic Component Used: PUSH BUTTON ANALOG A signal with infinite numbers. Arduino can digitizes analog signals (1024 levels) The level values are from 0 – 1023 Electronic Component Used: POTENTIOMETER Write the Digital Signal Format: digitalWrite(pin#,value); Value HIGH or LOW Example: digitalWrite(7,HIGH); Format: pinMode(pin#, MODE); Example: pinMode(7,INPUT); pinMode(7,OUTPUT); Read the Analog Signal Format: analogRead(pin#); Example: analogRead(7); Read the Digital Signal Format: digitalRead(pin#); Example: digitalRead(7); Write the Analog Signal Format: analogWrite(pin#,value); Value Between 0 to 255 Example: analogWrite(7,127); DIGITAL READ AND WRITE ANALOG READ AND WRITE Statement to Initialize Arduino pins for INPUT or OUTPUT
  • 18. Programming Tips (CONTINUED) Statement Explanation Serial.begin(9600); while(!Serial); Serial communication with baud rate 9600 Loop to execute until the serial communication is there void setup() A Function to run the code once void loop() A Function to run the code repeatedly int Float Integer variable declaration example  int count = 0; Float variable declaration example  float value = 5.5; Serial.print(); Serial.println(); Statement used to print/display a value or message Example: Serial.println(“Hello”); Serial.println(value); delay(milliseconds); A Function pause or wait for amount of time in milliseconds. Example: delay(100); // if you are given seconds then convert to milliseconds. if (condition) { //true part } else {//false part } Decision statement. Condition is checked. If the condition is true the true part executes. It the condition is false the false part executes. Example: if (digitalRead (7) == HIGH) { Serial.println(“Button is not pressed”); } else { Serial.println(“Button is pressed”);