-40%

MOSFET breakout board module switch relay (15A, 30V) 3-outputs for Arduino/RPi

$ 5.78

Availability: 100 in stock
  • MPN: PSMN011-30YLC
  • Type: MOSFET Board
  • Refund will be given as: Money Back
  • Restocking Fee: No
  • Brand: Whizoo
  • All returns accepted: Returns Accepted
  • Return shipping will be paid by: Buyer
  • Item must be returned within: 30 Days
  • Condition: New
  • Country/Region of Manufacture: United States

    Description

    Description
    This breakout board makes it easy to switch loads on and off using your favorite Arduino, Raspberry Pi, BeagleBone or PIC microcontroller. The board has 3 outputs, making it perfect for controlling RGB light strings. Other common loads include motors and heaters.
    While each MOSFET can handle 37 amps, the board and connectors are only rated for 15 amps. This means the combined current for all of the MOSFETs cannot exceed 15 amps without risking damage to the board.
    If you need 4 outputs then take a look at
    this
    board.
    Specifications
    MOSFET Part Number
    PSMN011-30YLC
    MOSFET Type
    N-Channel
    Number of Outputs
    3
    Maximum Voltage
    30V
    Maximum Current Per Output
    15 Amps
    Maximum Total Current
    15 Amps
    Turn Output On
    2.5V to 20V
    Turn Output Off
    0V
    Dimensions
    1.6" x 1.7" (40mm x 42mm)
    Drain-Source On Resistance
    approx. 10mΩ
    Mounting Holes
    one in each corner (4)
    Arduino Sample Code
    // Connect pin D3 of Arduino to pin 1 on the breakout board
    // Connect GND of Arduino to GND on the breakout board
    void setup() {
    pinMode(3, OUTPUT); // Configure D3 as an output
    }
    void loop() {
    digitalWrite(3, HIGH); // Turn on the MOSFET
    sleep(1000); // Wait 1 second
    digitalWrite(3, LOW); // Turn off the MOSFET
    sleep(1000); // Wait 1 second
    // PWM the output to achieve 26% brightness
    analogWrite(3, map(26, 0, 100, 0, 255);
    sleep(1000); // Wait 1 second
    }