Download Implementation of a Transistor Circuit

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Nanofluidic circuitry wikipedia , lookup

Crossbar switch wikipedia , lookup

Molecular scale electronics wikipedia , lookup

Radio transmitter design wikipedia , lookup

Antique radio wikipedia , lookup

Thermal runaway wikipedia , lookup

Operational amplifier wikipedia , lookup

Switched-mode power supply wikipedia , lookup

Opto-isolator wikipedia , lookup

Power MOSFET wikipedia , lookup

Amplifier wikipedia , lookup

Tube sound wikipedia , lookup

Wien bridge oscillator wikipedia , lookup

Two-port network wikipedia , lookup

Valve RF amplifier wikipedia , lookup

Transistor–transistor logic wikipedia , lookup

Regenerative circuit wikipedia , lookup

Index of electronics articles wikipedia , lookup

Invention of the integrated circuit wikipedia , lookup

Current mirror wikipedia , lookup

CMOS wikipedia , lookup

Integrated circuit wikipedia , lookup

Transcript
Implementation of a Transistor Circuit
TEAMS OF 2: A transistor is a semiconductor device that can be used as an “electrical switch” or
as an amplifier. We will learn more about how transistors work later in the class. Implement the
following circuit on your Arduino:
Compare the pin locations of C, B
and E to the circuit diagram.
Be sure to point the SHORT leg of
the LED toward ground
Now, write a simple program to
make the LED blink on and off.
To do this, make pin 4 go HIGH
and LOW in an infinite loop, and
you choose the duration of the
blinks.
void setup() {
pinMode(4,OUTPUT);
}
void loop() {
digitalWrite(4, HIGH);
delay(1000);
digitalWrite(4, LOW);
delay(1000);
}
Question: What is happening when you change the values of the pause command??????
Answer: The transistor is SWITCHING the LED on and off.
We will use transistors to activate a relays for switching solenoid valves and our fishtank heater
on and off. Now, let’s learn about how transistors work and more about semiconductors in
general.