Datenblatt-Suchmaschine für elektronische Bauteile
  German  ▼
ALLDATASHEETDE.COM

X  

  • BC808

  • AI
    ## Overview of the BC808 Transistor The **BC808** is a popular PNP epitaxial silicon transistor designed for general-purpose switching and amplification applications. It is the PNP complement to the **BC818** (NPN). --- ### 1. Key Technical Specifications The following table summarizes the maximum ratings and electrical characteristics of the BC808: | Parameter | Symbol | Value | Unit | | :--- | :--- | :--- | :--- | | **Collector-Emitter Voltage** | $V_{CEO}$ | -25 | V | | **Collector-Base Voltage** | $V_{CBO}$ | -30 | V | | **Emitter-Base Voltage** | $V_{EBO}$ | -5 | V | | **Collector Current (DC)** | $I_C$ | -500 | mA | | **Collector Current (Peak)** | $I_{CP}$ | -1000 | mA | | **Total Power Dissipation** | $P_D$ | 310 | mW | | **DC Current Gain** | $h_{FE}$ | 100 – 630 | - | | **Transition Frequency** | $f_T$ | 100 (Typ) | MHz | --- ### 2. Physical Characteristics (SOT-23) The BC808 is almost exclusively found in the **SOT-23** surface-mount package. This makes it ideal for compact electronic designs and automated PCB assembly. #### Pinout Configuration: 1. **Base (B)** 2. **Emitter (E)** 3. **Collector (C)** --- ### 3. Gain Classifications The BC808 is often categorized by its DC current gain ($h_{FE}$), indicated by a suffix or specific marking code on the component: * **BC808-16:** $h_{FE}$ range of 100 to 250 * **BC808-25:** $h_{FE}$ range of 160 to 400 * **BC808-40:** $h_{FE}$ range of 250 to 630 --- ### 4. Typical Applications Because of its moderate current handling (500mA) and high gain, it is used in several common circuits: * **Switching:** Driving small loads like LEDs, relays, or solenoid valves. * **Amplification:** Used in low-frequency audio pre-amplifiers. * **Push-Pull Stages:** Paired with the BC818 for output stages in small amplifiers. * **Driver Circuits:** Acting as a buffer for microcontroller outputs to drive higher current peripherals. --- ### 5. Implementation Example Here is a simple example of how to use a PNP transistor like the BC808 as a high-side switch. ```python # Circuit Logic: # Input LOW (0V) -> Transistor ON (Current flows to Load) # Input HIGH (Vcc) -> Transistor OFF (No current flows) Vcc = "5V" Load = "LED with Resistor" Transistor = "BC808" def high_side_switch_logic(input_signal): if input_signal == "LOW": return "Load is ON" else: return "Load is OFF" ```
    ✨ Follow-up Questions
    • What are the differences between the BC808 and its NPN counterpart BC818?
    • Can the BC808 handle inductive loads like motors directly?
    • How do I identify the gain class (-16
    • -25
    • -40) using the SMD marking code?