

The FS800E, manufactured by Saya, is a high-performance, low-power MOSFET driver designed to drive power MOSFETs in a wide range of applications. It is optimized for fast switching speeds and low propagation delay, making it ideal for high-efficiency power supplies, motor control systems, and other applications requiring precise MOSFET control. The FS800E can drive both high-side and low-side MOSFETs efficiently, ensuring reliable operation in demanding environments.








| Parameter | Value |
|---|---|
| Supply Voltage (VDD) | 4.5V to 18V |
| Output Drive Current | 2A (peak) |
| Propagation Delay | 20ns (typical) |
| Operating Temperature | -40°C to +125°C |
| Input Logic Levels | TTL/CMOS compatible |
| Output Rise/Fall Time | 10ns (typical) |
| Package Type | 8-pin SOIC or DIP |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | IN | Input signal for controlling the MOSFET driver. TTL/CMOS compatible. |
| 2 | GND | Ground connection. |
| 3 | VDD | Supply voltage input (4.5V to 18V). |
| 4 | OUT | Output signal to drive the MOSFET gate. |
| 5 | NC | No connection. Leave unconnected or grounded. |
| 6 | EN | Enable pin. High to enable the driver, low to disable. |
| 7 | HS | High-side MOSFET drive signal. |
| 8 | LS | Low-side MOSFET drive signal. |
The FS800E can be controlled using an Arduino UNO to drive a MOSFET for switching a load. Below is an example circuit and code:
// Define the pin connected to the FS800E IN pin
const int driverPin = 9;
void setup() {
// Set the driver pin as an output
pinMode(driverPin, OUTPUT);
}
void loop() {
// Turn the MOSFET on
digitalWrite(driverPin, HIGH);
delay(1000); // Keep the MOSFET on for 1 second
// Turn the MOSFET off
digitalWrite(driverPin, LOW);
delay(1000); // Keep the MOSFET off for 1 second
}
No Output Signal on OUT Pin
MOSFET Overheating
Driver Not Responding to Input Signal
High Noise on Output Signal
Q1: Can the FS800E drive both N-channel and P-channel MOSFETs?
A1: The FS800E is primarily designed for driving N-channel MOSFETs. For P-channel MOSFETs, additional circuitry may be required.
Q2: What is the maximum switching frequency of the FS800E?
A2: The FS800E can operate at switching frequencies up to 1MHz, depending on the load and circuit design.
Q3: Is the FS800E suitable for driving IGBTs?
A3: While the FS800E is optimized for MOSFETs, it can drive IGBTs with similar gate drive requirements. However, verify the IGBT's gate charge and switching characteristics.
Q4: Can I use the FS800E in a 24V system?
A4: The FS800E's maximum supply voltage is 18V. For 24V systems, use a voltage regulator to step down the supply voltage to within the FS800E's operating range.
This concludes the documentation for the FS800E MOSFET driver. For further assistance, refer to the manufacturer's datasheet or contact Saya's technical support.