

The FS-iA6 is a field-effect transistor (FET) manufactured by FlySky, designed for switching and amplification applications in electronic circuits. This component is known for its low power consumption, high input impedance, and efficient signal processing capabilities. Its versatility makes it suitable for a wide range of applications, including audio amplification, signal modulation, and digital switching.








| Parameter | Value |
|---|---|
| Manufacturer | FlySky |
| Part ID | FS-iA6 |
| Type | Field-Effect Transistor (FET) |
| Operating Voltage Range | 2V to 20V |
| Maximum Drain Current | 500mA |
| Power Dissipation | 300mW |
| Input Impedance | High (typically >1MΩ) |
| Switching Speed | Fast (<10ns rise/fall time) |
| Package Type | TO-92 or SMD |
The FS-iA6 typically comes in a 3-pin configuration. Below is the pinout description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Gate | Controls the flow of current between the |
| source and drain. | ||
| 2 | Drain | The output terminal where current flows |
| out of the transistor. | ||
| 3 | Source | The input terminal where current enters |
| the transistor. |
The FS-iA6 can be used as a switch to control an LED using an Arduino UNO. Below is an example circuit and code:
// Define the pin connected to the Gate of FS-iA6
const int transistorGatePin = 9;
void setup() {
pinMode(transistorGatePin, OUTPUT); // Set pin 9 as an output
}
void loop() {
digitalWrite(transistorGatePin, HIGH); // Turn on the transistor
delay(1000); // Keep the LED on for 1 second
digitalWrite(transistorGatePin, LOW); // Turn off the transistor
delay(1000); // Keep the LED off for 1 second
}
Transistor Not Switching:
Overheating:
No Output at Drain Pin:
Q1: Can the FS-iA6 be used for high-frequency applications?
A1: Yes, the FS-iA6 has a fast switching speed (<10ns rise/fall time), making it suitable for high-frequency applications.
Q2: Is the FS-iA6 compatible with 3.3V logic levels?
A2: Yes, the FS-iA6 can operate with Gate voltages as low as 2V, making it compatible with 3.3V logic systems.
Q3: How do I protect the FS-iA6 from damage?
A3: Use a resistor in series with the Gate pin to limit current, and handle the component carefully to avoid ESD damage. Additionally, use a flyback diode for inductive loads.
This concludes the documentation for the FS-iA6. For further assistance, refer to the manufacturer's datasheet or contact FlySky support.