A MOSFET Switch SPDT (Single Pole Double Throw) is an electronic switch that utilizes Metal-Oxide-Semiconductor Field-Effect Transistor (MOSFET) technology to alternate an electrical signal between two distinct paths. This component is essential in applications where control of current flow is required, such as in power supply circuits, motor control, and signal routing.
Pin Number | Name | Description |
---|---|---|
1 | IN | Control input from microcontroller (3.3V - 5V) |
2 | V+ | Source voltage for the load (up to 30V) |
3 | NO | Normally open terminal, connected to load when IN is high |
4 | NC | Normally closed terminal, connected to load when IN is low |
5 | GND | Ground reference for the control signal and load |
GND
pin to the ground of your power supply and microcontroller.V+
pin to the positive terminal of your power supply.IN
pin to a digital output pin on your microcontroller.NO
or NC
terminal, depending on the desired default state.IN
pin to ensure the switch remains off when the control signal is not active.// Define the control pin for the MOSFET Switch SPDT
const int mosfetControlPin = 7;
void setup() {
// Set the MOSFET control pin as an output
pinMode(mosfetControlPin, OUTPUT);
}
void loop() {
// Turn on the MOSFET switch (connects to NO terminal)
digitalWrite(mosfetControlPin, HIGH);
delay(1000); // Wait for 1 second
// Turn off the MOSFET switch (connects to NC terminal)
digitalWrite(mosfetControlPin, LOW);
delay(1000); // Wait for 1 second
}
IN
pin is receiving a signal.NO
or NC
terminal and that the V+
pin is supplied with the correct voltage.IN
pin and the V+
pin.Q: Can I use this MOSFET Switch with a 3.3V microcontroller? A: Yes, the control voltage range allows for compatibility with both 3.3V and 5V microcontrollers.
Q: Is it necessary to use a heat sink with this MOSFET? A: A heat sink is recommended if the current through the MOSFET is close to the maximum continuous current rating to prevent overheating.
Q: Can I control this MOSFET with PWM? A: Yes, the MOSFET can be controlled with PWM to modulate the power delivered to the load. Ensure that the PWM frequency does not exceed the switching speed of the MOSFET.
This documentation provides a comprehensive guide to using the Core Electronics MOSFET Switch SPDT with part ID CE08489. For further assistance or technical support, please contact the manufacturer or visit their support forums.