LED Faint Glow?

Ok, I have just a small program I am testing with:

OutputPort LED;
            LED = new OutputPort((Cpu.Pin)FEZ_Pin.Digital.Di51, true);

So the LED is turn on, but before it is turned on, the LED has a faint glow to it. Is that because it is floating? If so How do I pull that port down?

Lots of help here Thanks!

This is because the micro has internal pull-up resistor. If you want the led be off by default you will need to add external pull-down resistor 10K.

Sweet! Once again thanks a lot!

You are welcome!

Good to know that~~~~~~~~~~ Thanks