

The Mosfetti 4 Channel MOSFET Switch (Manufacturer Part ID: SKU00099) by Monk Makes is a compact and efficient electronic switch designed for controlling high-current loads. Utilizing MOSFET technology, this module allows for precise and reliable switching with minimal heat generation. It features four independent channels, making it ideal for applications requiring multiple load control.








The Mosfetti module has two main interfaces: the Logic Input Pins and the Load Output Terminals.
| Pin Name | Description | Voltage Level |
|---|---|---|
| IN1 | Logic input for Channel 1 | 3.3V to 5V |
| IN2 | Logic input for Channel 2 | 3.3V to 5V |
| IN3 | Logic input for Channel 3 | 3.3V to 5V |
| IN4 | Logic input for Channel 4 | 3.3V to 5V |
| GND | Ground connection for logic signals | 0V |
| Terminal Name | Description |
|---|---|
| OUT1 | Load output for Channel 1 |
| OUT2 | Load output for Channel 2 |
| OUT3 | Load output for Channel 3 |
| OUT4 | Load output for Channel 4 |
| GND | Common ground for load connections |
| VIN | Positive voltage supply for loads |
Below is an example of controlling a DC motor connected to Channel 1 using an Arduino UNO.
// Define the Mosfetti input pin connected to Arduino
const int mosfettiPin = 3; // IN1 connected to Arduino pin 3
void setup() {
pinMode(mosfettiPin, OUTPUT); // Set the Mosfetti pin as an output
}
void loop() {
digitalWrite(mosfettiPin, HIGH); // Turn on the load (e.g., motor)
delay(2000); // Keep the load on for 2 seconds
digitalWrite(mosfettiPin, LOW); // Turn off the load
delay(2000); // Keep the load off for 2 seconds
}
The load does not turn on:
The module overheats:
Inductive load causes noise or malfunction:
Microcontroller resets when switching loads:
Q: Can I use the Mosfetti module with a 12V LED strip?
A: Yes, the Mosfetti module supports load voltages up to 30V DC. Ensure the total current of the LED strip does not exceed 5A per channel.
Q: Is the module compatible with 3.3V logic microcontrollers like ESP32?
A: Yes, the Mosfetti module accepts logic input voltages from 3.3V to 5V, making it compatible with most microcontrollers.
Q: Can I control all four channels simultaneously?
A: Yes, you can control all four channels independently or simultaneously, as long as the total current does not exceed the power supply's capacity.
Q: Does the module support AC loads?
A: No, the Mosfetti module is designed for DC loads only. Do not use it with AC loads.