BSS84
AI

## BSS84 P-Channel Enhancement Mode MOSFET
The **BSS84** is a widely used P-channel enhancement mode Field-Effect Transistor (FET) designed using high-density, proprietary, DMOS technology. It is primarily used for low-voltage, low-current switching applications.
### 1. Key Specifications
Below are the typical electrical characteristics for a standard BSS84:
| Parameter | Symbol | Typical Value |
| :--- | :--- | :--- |
| **Drain-Source Voltage** | $V_{DSS}$ | -50V |
| **Continuous Drain Current** | $I_D$ | -130mA to -360mA |
| **Gate-Source Voltage** | $V_{GSS}$ | ±20V |
| **Static Drain-Source On-Resistance** | $R_{DS(on)}$ | 3.5Ω - 10Ω |
| **Gate Threshold Voltage** | $V_{GS(th)}$ | -0.8V to -2.0V |
| **Package Type** | SOT-23 | Surface Mount |
---
### 2. Pin Configuration
The BSS84 usually comes in a **SOT-23** package. The pinout is standard for most manufacturers:
1. **Gate (G):** Controls the biasing of the MOSFET.
2. **Source (S):** Connected to the positive supply in P-channel configurations.
3. **Drain (D):** Connected to the load.
---
### 3. Features and Advantages
* **Voltage Controlled:** Since it is a MOSFET, it requires very little gate current, making it ideal for interfacing with CMOS or TTL logic.
* **High Saturation Current:** Capable of handling pulsed currents much higher than its continuous rating.
* **Fast Switching:** Low input capacitance allows for high-speed operation.
* **ESD Protection:** Many modern versions include an internal Zener diode to protect the gate from electrostatic discharge.
---
### 4. Typical Applications
The BSS84 is generally not used for power conversion but rather for signal level shifting and logic control.
* **High-Side Switching:** Turning on/off a load connected to a positive rail.
* **Level Shifting:** Converting logic signals between different voltage domains.
* **Battery Management:** Used in portable electronics for power path selection.
* **Driver Circuits:** Driving small relays, LEDs, or stepping up gate signals for larger MOSFETs.
---
### 5. Simple Implementation (Example)
In a high-side switch configuration, the Source is connected to $V_{CC}$. Pulling the Gate to Ground (0V) turns the device **ON**, while pulling it to $V_{CC}$ turns it **OFF**.
```python
# Conceptual Logic for BSS84 High-Side Switch
if Gate_Voltage == 0:
Status = "Conducting (Load ON)"
elif Gate_Voltage == Vcc:
Status = "Non-Conducting (Load OFF)"
```
- ⤷
How does the BSS84 compare to its N-channel counterpart
- ⤷ the BSS138?
- ⤷ What is the maximum power dissipation for the SOT-23 BSS84?
- ⤷ Can the BSS84 be driven directly by a 3.3V microcontroller?