SlideShare a Scribd company logo
1 of 36
z
Microprocessor
Systems
CT-318
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
1
Download this presentation at
www.markjohn.cf/courses/
z
Previous Discussions
 arithmetic
 compound assignments
 comparison operators
 logical operators
 constants values
 if statements
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
2
z
Previous Discussions
 if… else statement
 for statement
 while loop statement
 do… while statement
 pinMode(pin, mode)
 digitalRead(pin)
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
3
z
Previous Discussions
 digitalWrite(pin, value)
 analogRead(pin)
 analogWrite(pin, value)
 delay(ms)
 millis()
 min(x, y)
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
4
z
Previous Discussions
 max(x, y)
 randomSeed(seed)
 random(max)
 random(min, max)
 Serial.begin(rate)
 Serial.println(data)
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
5
z
OBJECTIVES
At the end of this lesson, learners will be able to;
1. solve complex Arduino projects;
2. sketch Arduino codes;
3. discover techniques by sketching in the Arduino language;
4. explain the principles of LEDs, which are used in a broad range of LED devices with
digital and analog outputs;
5. distinguish functions and parameters used in digital and analog outputs, and;
6. apply skills in electrical, electronics and programming, to develop various LED
devices.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
6
z
Oral Recitation
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
7
z
Arithmetic operators includes?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
8
z
Enumerate the following.
x++ is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
9
z
Enumerate the following.
x - - is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
10
z
Enumerate the following.
x += y is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
11
z
Enumerate the following.
x -= y is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
12
z
Enumerate the following.
x *= y is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
13
z
Enumerate the following.
x /= y is the same as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
14
z
Enumerate the following.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
15
z
Write the code on the board.
Logical AND
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
16
z
Write the code on the board.
Logical OR
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
17
z
Write the code on the board.
Logical NOT
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
18
z
In BOOLEAN, zero is defined as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
19
z
In BOOLEAN, TRUE is defined as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
20
z
 HIGH is defined as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
21
z
 LOW is defined as?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
22
z
Explain the code.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
23
z
Explain the code.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
24
z
Explain the code.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
25
z
Explain the code.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
26
z
Explain each part of a “for statement”.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
27
z
 What will happen if the expression
inside the parentheses becomes
false?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
28
z
 What will happen if x is no longer
less than 100?
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
29
z
Explain the diagram.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
30
z
Demonstration of
HANDS – ON Activity
using tinkercad
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
31
z
HANDS – ON Activity
The Problem:
Assemble and sketch an Arduino Project that uses Serial Input, you will be
given 45 minutes to do the task.
Where;
Use 3 LEDs like yellow, green, and red.
Then in the serial monitor;
If you type 1 then the yellow LED will turn on,
If you type 2 then the LEDs will blink sequentially,
If you type 3 then all LEDs will turn on
If you type 0 all LEDs will turn off.
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
32
Scan the QR code using your phone camera to
download the pseudo-code.
Having trouble to scan?
Go to www.markjohn.cf/courses/
z
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
33
z
Schematic Diagram
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
34
z
Actual Wiring
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
35
z
Microprocessor
Systems
CT-318
11/23/2022
Lesson
3
-
LED
Display
PART
3
|
MIDTERM
|
Mark
John
P.
Lado,
MITc
36
Download this presentation at
www.markjohn.cf/courses/

More Related Content

More from Mark John Lado, MIT

2 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John Lado2 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John LadoMark John Lado, MIT
 
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...Mark John Lado, MIT
 
PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...Mark John Lado, MIT
 
Dart Programming Language by Mark John Lado
Dart Programming Language by Mark John LadoDart Programming Language by Mark John Lado
Dart Programming Language by Mark John LadoMark John Lado, MIT
 
Computer hacking and security - Social Responsibility of IT Professional by M...
Computer hacking and security - Social Responsibility of IT Professional by M...Computer hacking and security - Social Responsibility of IT Professional by M...
Computer hacking and security - Social Responsibility of IT Professional by M...Mark John Lado, MIT
 
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...Mark John Lado, MIT
 
IT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Semi Finals by Mark John LadoIT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Semi Finals by Mark John LadoMark John Lado, MIT
 
IT Security and Management - Security Policies
IT Security and Management - Security PoliciesIT Security and Management - Security Policies
IT Security and Management - Security PoliciesMark John Lado, MIT
 
Systems Administration - MARK JOHN LADO
Systems Administration - MARK JOHN LADOSystems Administration - MARK JOHN LADO
Systems Administration - MARK JOHN LADOMark John Lado, MIT
 
IT Security and Management - Prelim Lessons by Mark John Lado
IT Security and Management - Prelim Lessons by Mark John LadoIT Security and Management - Prelim Lessons by Mark John Lado
IT Security and Management - Prelim Lessons by Mark John LadoMark John Lado, MIT
 
Introduction to Networks and Programming Language
Introduction to Networks and Programming LanguageIntroduction to Networks and Programming Language
Introduction to Networks and Programming LanguageMark John Lado, MIT
 
IT Infrastructure and Network Technologies - Finals by Mark John Lado
IT Infrastructure and Network Technologies - Finals by Mark John LadoIT Infrastructure and Network Technologies - Finals by Mark John Lado
IT Infrastructure and Network Technologies - Finals by Mark John LadoMark John Lado, MIT
 
Foundations of Information System in Business - Mark John Lado
Foundations of Information System in Business - Mark John LadoFoundations of Information System in Business - Mark John Lado
Foundations of Information System in Business - Mark John LadoMark John Lado, MIT
 
IT infrastructure and network technologies for Semi Final
IT infrastructure and network technologies for Semi FinalIT infrastructure and network technologies for Semi Final
IT infrastructure and network technologies for Semi FinalMark John Lado, MIT
 
Security Privacy Operating System and Artificial Intelligence
Security Privacy Operating System and Artificial IntelligenceSecurity Privacy Operating System and Artificial Intelligence
Security Privacy Operating System and Artificial IntelligenceMark John Lado, MIT
 
IT infrastructure and Network technologies for Midterm
IT infrastructure and Network technologies for MidtermIT infrastructure and Network technologies for Midterm
IT infrastructure and Network technologies for MidtermMark John Lado, MIT
 
IT infrastructure and network technologies by Mark John Lado
IT infrastructure and network technologies by Mark John Lado IT infrastructure and network technologies by Mark John Lado
IT infrastructure and network technologies by Mark John Lado Mark John Lado, MIT
 

More from Mark John Lado, MIT (20)

2 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John Lado2 Module - Operating Systems Configuration and Use by Mark John Lado
2 Module - Operating Systems Configuration and Use by Mark John Lado
 
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 1 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
 
PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
PART 2 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado...
 
Dart Programming Language by Mark John Lado
Dart Programming Language by Mark John LadoDart Programming Language by Mark John Lado
Dart Programming Language by Mark John Lado
 
What is CRUD in TPS?
What is CRUD in TPS?What is CRUD in TPS?
What is CRUD in TPS?
 
Computer hacking and security - Social Responsibility of IT Professional by M...
Computer hacking and security - Social Responsibility of IT Professional by M...Computer hacking and security - Social Responsibility of IT Professional by M...
Computer hacking and security - Social Responsibility of IT Professional by M...
 
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
A WIRELESS DIGITAL PUBLIC ADDRESS WITH VOICE ALARM AND TEXT-TO-SPEECH FEATURE...
 
IT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Semi Finals by Mark John LadoIT Security and Management - Semi Finals by Mark John Lado
IT Security and Management - Semi Finals by Mark John Lado
 
IT Security and Management - Security Policies
IT Security and Management - Security PoliciesIT Security and Management - Security Policies
IT Security and Management - Security Policies
 
Systems Administration - MARK JOHN LADO
Systems Administration - MARK JOHN LADOSystems Administration - MARK JOHN LADO
Systems Administration - MARK JOHN LADO
 
IT Security and Management - Prelim Lessons by Mark John Lado
IT Security and Management - Prelim Lessons by Mark John LadoIT Security and Management - Prelim Lessons by Mark John Lado
IT Security and Management - Prelim Lessons by Mark John Lado
 
Introduction to Networks and Programming Language
Introduction to Networks and Programming LanguageIntroduction to Networks and Programming Language
Introduction to Networks and Programming Language
 
MIS Concept Final Term
MIS Concept Final TermMIS Concept Final Term
MIS Concept Final Term
 
IT Infrastructure and Network Technologies - Finals by Mark John Lado
IT Infrastructure and Network Technologies - Finals by Mark John LadoIT Infrastructure and Network Technologies - Finals by Mark John Lado
IT Infrastructure and Network Technologies - Finals by Mark John Lado
 
Foundations of Information System in Business - Mark John Lado
Foundations of Information System in Business - Mark John LadoFoundations of Information System in Business - Mark John Lado
Foundations of Information System in Business - Mark John Lado
 
IT infrastructure and network technologies for Semi Final
IT infrastructure and network technologies for Semi FinalIT infrastructure and network technologies for Semi Final
IT infrastructure and network technologies for Semi Final
 
Security Privacy Operating System and Artificial Intelligence
Security Privacy Operating System and Artificial IntelligenceSecurity Privacy Operating System and Artificial Intelligence
Security Privacy Operating System and Artificial Intelligence
 
Introduction to Computing
Introduction to ComputingIntroduction to Computing
Introduction to Computing
 
IT infrastructure and Network technologies for Midterm
IT infrastructure and Network technologies for MidtermIT infrastructure and Network technologies for Midterm
IT infrastructure and Network technologies for Midterm
 
IT infrastructure and network technologies by Mark John Lado
IT infrastructure and network technologies by Mark John Lado IT infrastructure and network technologies by Mark John Lado
IT infrastructure and network technologies by Mark John Lado
 

Recently uploaded

Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
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
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 

Recently uploaded (20)

Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
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
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
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
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 

PART 3 CT-318-Microprocessor-Systems Lesson 3 - LED Display by Mark John Lado.ppsx

Editor's Notes

  1. This activity is by group with at least 3 members each group.