The IR2110S, manufactured by International Rectifier, is a high voltage, high speed power MOSFET and IGBT driver with independent high and low side referenced output channels. This component is designed to drive power MOSFETs and IGBTs in a half-bridge configuration, making it ideal for a variety of applications including motor drives, power supplies, and DC-DC converters.
Parameter | Value |
---|---|
Supply Voltage (Vcc) | 10V to 20V |
High Side Floating Supply Voltage (Vb) | Up to 600V |
High Side Floating Offset Voltage (Vs) | -5V to 600V |
Output Current (Io) | 2A (peak) |
Turn-On Propagation Delay | 120 ns |
Turn-Off Propagation Delay | 94 ns |
Operating Temperature | -40°C to 125°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | Vcc | Logic and low side fixed supply |
2 | HIN | Logic input for high side gate driver output (HO) |
3 | LIN | Logic input for low side gate driver output (LO) |
4 | Vss | Logic ground |
5 | COM | Low side return |
6 | LO | Low side gate driver output |
7 | VS | High side floating supply return |
8 | HO | High side gate driver output |
9 | VB | High side floating supply |
Power Supply Connections:
Input Signals:
Output Connections:
Issue: No Output Signal
Issue: Excessive Heating
Issue: Erratic Switching
Q1: Can the IR2110S drive both MOSFETs and IGBTs?
Q2: What is the maximum voltage that the high side floating supply (VB) can handle?
Q3: How do I size the bootstrap capacitor?
// Example code to control IR2110S with Arduino UNO
const int HIN = 2; // High side input pin
const int LIN = 3; // Low side input pin
void setup() {
pinMode(HIN, OUTPUT);
pinMode(LIN, OUTPUT);
}
void loop() {
// Turn on high side MOSFET
digitalWrite(HIN, HIGH);
digitalWrite(LIN, LOW);
delay(1000); // Wait for 1 second
// Turn on low side MOSFET
digitalWrite(HIN, LOW);
digitalWrite(LIN, HIGH);
delay(1000); // Wait for 1 second
}
This example code demonstrates how to control the IR2110S using an Arduino UNO. The HIN and LIN pins are connected to digital pins 2 and 3 of the Arduino, respectively. The code alternates between turning on the high side and low side MOSFETs with a 1-second delay.
By following this documentation, users can effectively integrate the IR2110S into their electronic projects, ensuring reliable and efficient operation.