Hello,
I am trying to interface an IRLB8748PbF MOSFET with the arduino and am having issues. It seems the MOSFET 's gate is so sensitive that it cannot tell the difference between high and low states. As a result, the external circuit is always in a closed state regardless of the digital pin output.
Any suggestions?
Here is the current schematic:

Data sheet for IRLB8748PbF MOSFET
http://www.irf.com/product-info/datasheets/data/irlb8748pbf.pdf And the code:
int ledPin = 9;
void setup() {
pinMode(ledPin, OUTPUT);
}
void loop()
{
digitalWrite(ledPin, HIGH);
delay(5000);
digitalWrite(ledPin, LOW);
delay(5000);
}
Thanks!!!