/
Cascade switching of an LED Cascade switching of an LED

Cascade switching of an LED - PowerPoint Presentation

calandra-battersby
calandra-battersby . @calandra-battersby
Follow
407 views
Uploaded On 2017-09-06

Cascade switching of an LED - PPT Presentation

EAS 199B Winter 2013 Objectives Be able to describe the circuit that uses an NPN transistor to switch an LED on and off Be able to describe the circuit that uses an NPN transistor and a relay to switch an LED on and off ID: 585597

pin led digital switch led pin switch digital transistor describe switching code collector emitter relay circuit npn current transistors solenoid switches base

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Cascade switching of an LED" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Cascade switching of an LED

EAS 199B

Winter 2013Slide2

Objectives

Be able to describe the circuit that uses an NPN transistor to switch an LED on and off

Be able to describe the circuit that uses an NPN transistor and a relay to switch an LED on and off

Be able to describe the role of a fly-back diode on a relay coil or solenoid valve

Be able to describe the cascade switching circuit used to control the solenoid valves for the fish tank.Slide3

Use Digital I/O pin to switch LED on/off

Digital I/O pin

LEDSlide4

Code to blink the LED

int

LED_pin

= 11; // array of pins for digital output

void setup() {

pinMode

(

LED_pin, OUTPUT );}void loop() { digitalWrite( LED_pin, HIGH); delay(1000); digitalWrite( LED_pin, LOW); delay(1000);}

In the following examples, the Arduino code does not need to change when the electrical circuit is changed. The Arduino code only needs to used a single digital output pin, which in this code is

LED_pin

. Slide5

Use a Transistor to switch LED on/off

Digital I/O pin

Transistor

LEDSlide6

NPN Transistors as Switches

C is the collector.

B is the base

E is the emitter

Transistors can be used as switches: By applying relatively small voltage to the Base, electrical current will flow from the collector to the base.Slide7

NPN Transistors as Switches

C is the collector.

B is the base

E is the emitter

When used as a switch,

I

CE

, the current from the collector to the emitter is large compare to

I

BE, the current from the base to the emitter.Slide8

Use a Relay switch the LED on/off

Digital I/O pin

Transistor

Relay

LEDSlide9

Compare switching circuitsSlide10

Application to solenoid switching