SlideShare a Scribd company logo
1 of 18
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

What's hot

Section 5b&c capacitors pn junction
Section 5b&c capacitors  pn junctionSection 5b&c capacitors  pn junction
Section 5b&c capacitors pn junctionCDI Aljeer
 
Section 5 11 a &12 g
Section 5 11 a &12 g Section 5 11 a &12 g
Section 5 11 a &12 g CDI Aljeer
 
What is electronics?
What is electronics?What is electronics?
What is electronics?callr
 
The fundemental of electronics ebook
The fundemental of electronics ebookThe fundemental of electronics ebook
The fundemental of electronics ebookLe Thanh Nhan
 
Basic concepts of practical electronics
Basic concepts of practical electronicsBasic concepts of practical electronics
Basic concepts of practical electronicsVarad Manglekar
 
Build your own electronics lab
Build your own electronics labBuild your own electronics lab
Build your own electronics labKarim El-Rayes
 
Advanced Electronics - What is electronics?
Advanced Electronics - What is electronics?Advanced Electronics - What is electronics?
Advanced Electronics - What is electronics?callr
 
Section 1;11&12
Section 1;11&12Section 1;11&12
Section 1;11&12CDI Aljeer
 
Cdi t1 11_gen_unit1&2_revision_notes_eot
Cdi t1 11_gen_unit1&2_revision_notes_eotCdi t1 11_gen_unit1&2_revision_notes_eot
Cdi t1 11_gen_unit1&2_revision_notes_eotCDI Aljeer
 
Digital electronics
Digital electronicsDigital electronics
Digital electronicscallr
 
Basic workshop practice (electronics group) 17005
Basic workshop practice (electronics group) 17005Basic workshop practice (electronics group) 17005
Basic workshop practice (electronics group) 17005Pravin Shirke
 
Electronics Project Book
Electronics Project BookElectronics Project Book
Electronics Project BookVarun Bansal
 
Unit2 s3 electronic calculations 2
Unit2 s3 electronic calculations 2Unit2 s3 electronic calculations 2
Unit2 s3 electronic calculations 2CDI Aljeer
 
Sperry Electricity Basics
Sperry Electricity BasicsSperry Electricity Basics
Sperry Electricity Basicsdartboard
 
Construction of digital voltmeter by Bapi Kumar Das
Construction of digital voltmeter by Bapi Kumar DasConstruction of digital voltmeter by Bapi Kumar Das
Construction of digital voltmeter by Bapi Kumar DasB.k. Das
 
Basic Electronics components
Basic Electronics componentsBasic Electronics components
Basic Electronics componentsvaibhav jindal
 
Automatic DC Fan using LM35 (English version)
Automatic DC Fan using LM35 (English version)Automatic DC Fan using LM35 (English version)
Automatic DC Fan using LM35 (English version)Nurlatifa Haulaini
 
Basic concept of electronics.
Basic concept of electronics.Basic concept of electronics.
Basic concept of electronics.creatjet3d labs
 

What's hot (20)

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

Similar to 10 adv _revision_notes_term_3

Embedded Application on Microcontroller in Assembly and Embedded C
Embedded Application on Microcontroller in Assembly and Embedded CEmbedded Application on Microcontroller in Assembly and Embedded C
Embedded Application on Microcontroller in Assembly and Embedded CAvinash Reddy Penugonda
 
To interface temperature sensor with microcontroller and perform closed loop ...
To interface temperature sensor with microcontroller and perform closed loop ...To interface temperature sensor with microcontroller and perform closed loop ...
To interface temperature sensor with microcontroller and perform closed loop ...Ankita Tiwari
 
The iot academy_embeddedsystems_training_basicselectronicspart2
The iot academy_embeddedsystems_training_basicselectronicspart2The iot academy_embeddedsystems_training_basicselectronicspart2
The iot academy_embeddedsystems_training_basicselectronicspart2The IOT Academy
 
Halderman ch042 lecture
Halderman ch042 lectureHalderman ch042 lecture
Halderman ch042 lecturemcfalltj
 
EEE project.pptx
EEE project.pptxEEE project.pptx
EEE project.pptxASKSasi
 
03 analog control_sp17
03 analog control_sp1703 analog control_sp17
03 analog control_sp17John Todora
 
Analog sensor Part-9
Analog sensor Part-9Analog sensor Part-9
Analog sensor Part-9Techvilla
 
Temperature Based Fan Controller
Temperature Based Fan Controller Temperature Based Fan Controller
Temperature Based Fan Controller richa1910n
 
Automation of temperature variation setup for impedance analyzer using LabVIEW
Automation of temperature variation setup for impedance analyzer using LabVIEWAutomation of temperature variation setup for impedance analyzer using LabVIEW
Automation of temperature variation setup for impedance analyzer using LabVIEWNot yet working. I am still studying
 
Analog to Digital Conversion Basics
Analog to Digital Conversion BasicsAnalog to Digital Conversion Basics
Analog to Digital Conversion BasicsSrikrishna Thota
 
18cs33_module_1.pptx
18cs33_module_1.pptx18cs33_module_1.pptx
18cs33_module_1.pptxTLRTHR
 
GROUP1_INSTRU-SENSORS-CALI_FEEDBACK.pptx
GROUP1_INSTRU-SENSORS-CALI_FEEDBACK.pptxGROUP1_INSTRU-SENSORS-CALI_FEEDBACK.pptx
GROUP1_INSTRU-SENSORS-CALI_FEEDBACK.pptxRyan Cortes
 
Architecture of Smart Sensors.ppt
Architecture of Smart Sensors.pptArchitecture of Smart Sensors.ppt
Architecture of Smart Sensors.pptmrunalinithanaraj
 
Meeting w9 chapter 3 part 2
Meeting w9   chapter 3 part 2Meeting w9   chapter 3 part 2
Meeting w9 chapter 3 part 2Hattori Sidek
 
Sensors and microcontroller interfacing
Sensors and microcontroller interfacingSensors and microcontroller interfacing
Sensors and microcontroller interfacingmohamed albanna
 
Unit IV DA & AD Convertors and Phase Locked Loop
Unit IV  DA & AD Convertors and Phase Locked LoopUnit IV  DA & AD Convertors and Phase Locked Loop
Unit IV DA & AD Convertors and Phase Locked LoopDr.Raja R
 

Similar to 10 adv _revision_notes_term_3 (20)

Embedded Application on Microcontroller in Assembly and Embedded C
Embedded Application on Microcontroller in Assembly and Embedded CEmbedded Application on Microcontroller in Assembly and Embedded C
Embedded Application on Microcontroller in Assembly and Embedded C
 
To interface temperature sensor with microcontroller and perform closed loop ...
To interface temperature sensor with microcontroller and perform closed loop ...To interface temperature sensor with microcontroller and perform closed loop ...
To interface temperature sensor with microcontroller and perform closed loop ...
 
The iot academy_embeddedsystems_training_basicselectronicspart2
The iot academy_embeddedsystems_training_basicselectronicspart2The iot academy_embeddedsystems_training_basicselectronicspart2
The iot academy_embeddedsystems_training_basicselectronicspart2
 
Halderman ch042 lecture
Halderman ch042 lectureHalderman ch042 lecture
Halderman ch042 lecture
 
EEE project.pptx
EEE project.pptxEEE project.pptx
EEE project.pptx
 
03 analog control_sp17
03 analog control_sp1703 analog control_sp17
03 analog control_sp17
 
Analog sensor Part-9
Analog sensor Part-9Analog sensor Part-9
Analog sensor Part-9
 
Temperature Based Fan Controller
Temperature Based Fan Controller Temperature Based Fan Controller
Temperature Based Fan Controller
 
ADC & DAC
ADC & DACADC & DAC
ADC & DAC
 
R2 r dac
R2 r dacR2 r dac
R2 r dac
 
Automation of temperature variation setup for impedance analyzer using LabVIEW
Automation of temperature variation setup for impedance analyzer using LabVIEWAutomation of temperature variation setup for impedance analyzer using LabVIEW
Automation of temperature variation setup for impedance analyzer using LabVIEW
 
K010316571
K010316571K010316571
K010316571
 
Analog to Digital Conversion Basics
Analog to Digital Conversion BasicsAnalog to Digital Conversion Basics
Analog to Digital Conversion Basics
 
SCSA1407.pdf
SCSA1407.pdfSCSA1407.pdf
SCSA1407.pdf
 
18cs33_module_1.pptx
18cs33_module_1.pptx18cs33_module_1.pptx
18cs33_module_1.pptx
 
GROUP1_INSTRU-SENSORS-CALI_FEEDBACK.pptx
GROUP1_INSTRU-SENSORS-CALI_FEEDBACK.pptxGROUP1_INSTRU-SENSORS-CALI_FEEDBACK.pptx
GROUP1_INSTRU-SENSORS-CALI_FEEDBACK.pptx
 
Architecture of Smart Sensors.ppt
Architecture of Smart Sensors.pptArchitecture of Smart Sensors.ppt
Architecture of Smart Sensors.ppt
 
Meeting w9 chapter 3 part 2
Meeting w9   chapter 3 part 2Meeting w9   chapter 3 part 2
Meeting w9 chapter 3 part 2
 
Sensors and microcontroller interfacing
Sensors and microcontroller interfacingSensors and microcontroller interfacing
Sensors and microcontroller interfacing
 
Unit IV DA & AD Convertors and Phase Locked Loop
Unit IV  DA & AD Convertors and Phase Locked LoopUnit IV  DA & AD Convertors and Phase Locked Loop
Unit IV DA & AD Convertors and Phase Locked Loop
 

More from CDI Aljeer

Build a story draft-2
Build a story   draft-2Build a story   draft-2
Build a story draft-2CDI Aljeer
 
Project design space information 2017 18
Project design space information 2017 18Project design space information 2017 18
Project design space information 2017 18CDI Aljeer
 
12 a pneumatic systems
12 a pneumatic systems12 a pneumatic systems
12 a pneumatic systemsCDI Aljeer
 
Section 1 :- Mechanical systems-
Section 1 :- Mechanical systems-Section 1 :- Mechanical systems-
Section 1 :- Mechanical systems-CDI Aljeer
 
Sample Exam 12 a
Sample Exam  12 aSample Exam  12 a
Sample Exam 12 aCDI Aljeer
 
Sample Exam 11 a
Sample Exam  11 aSample Exam  11 a
Sample Exam 11 aCDI Aljeer
 
Sample Exam 11 g
Sample Exam  11 gSample Exam  11 g
Sample Exam 11 gCDI Aljeer
 
Sample Exam 12 g
Sample Exam  12 gSample Exam  12 g
Sample Exam 12 gCDI Aljeer
 
Cdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 11_adv_unit1&2_revision_notes_eotCdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 11_adv_unit1&2_revision_notes_eotCDI Aljeer
 
Cdi t1 12_adv_unit2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eotCdi t1 12_adv_unit2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eotCDI Aljeer
 
Cdi pd fusion 360 hyperloop
Cdi pd fusion 360 hyperloopCdi pd fusion 360 hyperloop
Cdi pd fusion 360 hyperloopCDI Aljeer
 
Section 3 adv 12
Section 3 adv 12Section 3 adv 12
Section 3 adv 12CDI Aljeer
 
Section 2 basic hydraulic system
Section 2  basic hydraulic system Section 2  basic hydraulic system
Section 2 basic hydraulic system CDI Aljeer
 
Physical properties
Physical propertiesPhysical properties
Physical propertiesCDI Aljeer
 
Section1; Mechanical Properties
Section1; Mechanical PropertiesSection1; Mechanical Properties
Section1; Mechanical PropertiesCDI Aljeer
 
Schematic f 11 adv
Schematic f 11 advSchematic f 11 adv
Schematic f 11 advCDI Aljeer
 
Schematic sdfsdf 11 adv
Schematic sdfsdf 11 advSchematic sdfsdf 11 adv
Schematic sdfsdf 11 advCDI Aljeer
 

More from CDI Aljeer (18)

Build a story draft-2
Build a story   draft-2Build a story   draft-2
Build a story draft-2
 
Project design space information 2017 18
Project design space information 2017 18Project design space information 2017 18
Project design space information 2017 18
 
12 a pneumatic systems
12 a pneumatic systems12 a pneumatic systems
12 a pneumatic systems
 
Section 1 :- Mechanical systems-
Section 1 :- Mechanical systems-Section 1 :- Mechanical systems-
Section 1 :- Mechanical systems-
 
Sample Exam 12 a
Sample Exam  12 aSample Exam  12 a
Sample Exam 12 a
 
Sample Exam 11 a
Sample Exam  11 aSample Exam  11 a
Sample Exam 11 a
 
Sample Exam 11 g
Sample Exam  11 gSample Exam  11 g
Sample Exam 11 g
 
Sample Exam 12 g
Sample Exam  12 gSample Exam  12 g
Sample Exam 12 g
 
Section 4
Section 4Section 4
Section 4
 
Cdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 11_adv_unit1&2_revision_notes_eotCdi t1 11_adv_unit1&2_revision_notes_eot
Cdi t1 11_adv_unit1&2_revision_notes_eot
 
Cdi t1 12_adv_unit2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eotCdi t1 12_adv_unit2_revision_notes_eot
Cdi t1 12_adv_unit2_revision_notes_eot
 
Cdi pd fusion 360 hyperloop
Cdi pd fusion 360 hyperloopCdi pd fusion 360 hyperloop
Cdi pd fusion 360 hyperloop
 
Section 3 adv 12
Section 3 adv 12Section 3 adv 12
Section 3 adv 12
 
Section 2 basic hydraulic system
Section 2  basic hydraulic system Section 2  basic hydraulic system
Section 2 basic hydraulic system
 
Physical properties
Physical propertiesPhysical properties
Physical properties
 
Section1; Mechanical Properties
Section1; Mechanical PropertiesSection1; Mechanical Properties
Section1; Mechanical Properties
 
Schematic f 11 adv
Schematic f 11 advSchematic f 11 adv
Schematic f 11 adv
 
Schematic sdfsdf 11 adv
Schematic sdfsdf 11 advSchematic sdfsdf 11 adv
Schematic sdfsdf 11 adv
 

Recently uploaded

Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 

Recently uploaded (20)

Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 

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”);