3Pcs DC 1 Channel 1 Route IRF540 MOSFET Switch Module For Arduino
5 were available / new
Indicative market price:
R285.00
R189.00
34% off
Shipping
R35.00 Standard shipping using one of our trusted couriers applies to most areas in South Africa. Some areas may attract a R30.00 surcharge. This will be calculated at checkout if applicable. Check my rate
The seller has indicated that they will usually have this item
ready to ship within 3 business days.
Shipping time depends on your delivery address.
The most accurate delivery time will be calculated at checkout,
but in general, the following shipping times apply:
Replacement Guarantee:
7 Days: Only if item is faulty.
Get it now, pay later
Product details
Condition
New
Location
International
Product code
1204947
Bob Shop ID
388155891
Please read and understand terms of sale under the Shipping Tab before making your purchase.
Please note: If there are options for this order then the price indicated is for the basic model. Please use Ask a Question to ask for the price of any of the other models of the other models listed.
Instruction:
MOSFET is an electronic device having a good switching characteristics, is widely used in the electronic switch circuit needs, such as switching power supplies and motor drives, and a lighting dimming. We designed this four-way MOSFET switch can provide up to four groups of electronic switches, were used to control different circuit modules. Affected MOSFET works, the electronic building blocks can be used to control the DC circuit, such as DC LED screen, etc., are not suitable for controlling the AC circuit. Under extreme circumstances of the MOSFET switch can be used to control 100V / 33A DC circuit, but is recommended not less than the minimum DC voltage 9V.
Wiring (To control a 12V LED lights, for example):
1. Connect power for +/- 2. LED lights "+" connect to module "+", LED lights "-" connect to S1, if there are other LED lights, connect to the switch 2 (S2), switch 3 (S3) and switch 4 (S4) in tuns; 3. Connection control side is much simpler, we only need to use a sensor cable, the corresponding control port and Arduino sensor expansion board connected, then you can control the 12V LED lights by Arduino. Package includes:
3 x IRF540 + MOSFET Switch Module
Test code as follows:
int s1Pin = 6; int s2Pin = 7; void setup() { pinMode(s1Pin, OUTPUT); pinMode(s2Pin, OUTPUT); } void loop() { int i; digitalWrite(s1Pin, HIGH); digitalWrite(s2Pin, HIGH); delay(500); digitalWrite(s1Pin, LOW); digitalWrite(s2Pin, LOW); delay(500); for (i = 0; i < 10; i ++) { digitalWrite(s1Pin, HIGH); delay(500); digitalWrite(s1Pin, LOW); delay(500); } for (i = 0; i < 100; i ++) { digitalWrite(s2Pin, HIGH); delay(50); digitalWrite(s2Pin, LOW); delay(50); } }