

The GT-24 is a general-purpose transistor designed for switching and amplification in electronic circuits. It is widely recognized for its reliability, efficiency, and versatility, making it a popular choice for hobbyists and professionals alike. The GT-24 can be used in a variety of applications, including signal amplification, motor control, and digital switching.








Below are the key technical details of the GT-24 transistor:
| Parameter | Value |
|---|---|
| Type | NPN Bipolar Junction Transistor (BJT) |
| Maximum Collector-Emitter Voltage (VCE) | 40V |
| Maximum Collector Current (IC) | 800mA |
| Maximum Power Dissipation (PD) | 500mW |
| DC Current Gain (hFE) | 100 - 300 |
| Transition Frequency (fT) | 150 MHz |
| Package Type | TO-92 |
The GT-24 transistor comes in a TO-92 package with three pins. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Collector | Current flows into this pin during operation. |
| 2 | Base | Controls the transistor's operation. A small current here allows a larger current to flow between the collector and emitter. |
| 3 | Emitter | Current flows out of this pin. |
The following example demonstrates how to use the GT-24 to control an LED with an Arduino UNO.
// Define the pin connected to the GT-24 base
const int transistorPin = 9;
void setup() {
pinMode(transistorPin, OUTPUT); // Set the pin as an output
}
void loop() {
digitalWrite(transistorPin, HIGH); // Turn on the LED
delay(1000); // Wait for 1 second
digitalWrite(transistorPin, LOW); // Turn off the LED
delay(1000); // Wait for 1 second
}
Transistor Not Switching:
Overheating:
No Output Signal:
LED Not Turning Off Completely:
Q: Can the GT-24 handle AC signals?
Q: What is the maximum switching speed of the GT-24?
Q: Can I use the GT-24 without a base resistor?
By following this documentation, you can effectively use the GT-24 transistor in your electronic projects.