Returning Customer
I am a returning customer
Register Account
If you already have an account with us, please login at the login form.
Your Account Has Been Created!
Congratulations! Your new account has been successfully created!
You can now take advantage of member privileges to enhance your online shopping experience with us.
If you have ANY questions about the operation of this online shop, please e-mail the store owner.
A confirmation has been sent to the provided e-mail address. If you have not received it within the hour, please contact us.
Account Logout
You have been logged off your account. It is now safe to leave the computer.
Your shopping cart has been saved, the items inside it will be restored whenever you log back into your account.
10Pcs DC 1 Channel 1 Route IRF540 MOSFET Switch Module
Product DescriptionInstruction: 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 thi..
Product Description
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: 10 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); } }