Trying to control 24v using MOSFET from propeller.
Tony_tsi
Posts: 98
I need help. I am trying to control a MOSFET from my propeller micro controller. Here is a link to the MOSFET data sheet I am using http://www.fairchildsemi.com/ds/HU/HUF75344G3.pdf . On the MOSFET the source is connected to ground, the drain it hooked up to my 24V led matrix, the gate needs to be hooked up to my propeller chip. What protection devices do I need to use between the gate on the MOSFET and the micro controller. This is for my UV exposure unit more info here http://www.tonytronix.com/myprojects/uvexposure.html
Comments
I think your gate to source leakage is on the order of 100 nano amps. And the only way the mosfet can "back feed" to your propeller is if the mosfet fails. I usually put about 300 ohms to maybe 1 K ohms on a prop pin controlling the gate of a mosfet just to be safe in the event of a mosfet frying out.
I would post this as a separate question in order to catch the eye of somebody on the forum who does that sort of soldering.
The threshold voltage to even start turning on is 4 volts, see the spec. The Prop only outputs 3.3V, not enough to even turn it on.
A much better choice would be the IRF3708 which has a threshold voltage of 2V and be strongly conducting at 3.3V.
One limitation is the Drain to Source voltage rating is 30V. Well within your requirement of running on 24V.
Duane
Where can I find this info in the data sheet?
I'm guessing he was looking at Figure 8.
-Phil
Why do I have to have the npn? Is it a hardware reason or is it just to avoid rewriting some of my code.
-Phil
In this case the threshold voltage says 2V to 4V. So for this application assume 4V for the HUF75344.
The IRF3708 threshold is 0.6V to 2V.
Clearly the Prop exceeds the2V threshold. However, one needs to drive it with more voltage to get sufficient current to flow.
Rds(on) in the spec says that Vgs of 2.8V will have a resistance of 29mO. Note! I use 29mO instead of 14.5mO.
Depending on the required current in the application this will define how much heat will be dissipated.
Sure, most of these MOSFETs will have lower threshold and less resistance and with a bit of experimentation one may be happy with the operation on a single test case.
But if you are doing a good design trust in the specification and study the worst case specs and you can be confident a circuit will work even if you have never even seen the part.
How much current do you need to switch?
How fast do you need to do the switching?
Duane