Electronic – Explain the use of NPN and pMOSFET in this 8x8x8 LED cube

npnpmostransistors

I've got part of a circuit diagram for an 8x8x8 RGB LED cube from http://www.kevindarrah.com. See the entire schematic. I'm having trouble working out how it does what it does.

I know that a high voltage coming to CNTRL_L0 will illuminate the LED attached to ANODE_LEVEL_0 but I'm not sure why all of this is necessary?

The 2N3904 is an NPN transistor, so when the CNTRL_0 is high the transistor is active and allows current through so that would mean the circuit connects from the first (on the left) +5V to the first GND and you effectively get a low going into the IRF9Z34N (the pMOSFET). That means the pMOSFET does not conduct, but so what? No matter what happens the ANODE_LEVEL_0 is connected to GND, wouldn't it always be illuminated? And if all that is needed to get this to work is that the 2nd +5V is cut off from the ANODE_LEVEL_0 then wouldn't a single PNP transistor joining CNTRL_L0, 5V and ANODE/GND do the same thing?

enter image description here

Best Answer

T1 is a simple common emitter inverter. CNTRL_L0 is the input, and the node between T1 and Q2 is the output. If the input is high, the output is low. If the input is low, the output is high.

Q2 is just another inverter, but it uses a MOSFET instead of a BJT, and because this is a P-channel device, everything is upside-down. In this circuit, as is conventional, the P-channel MOSFET is drawn with the source at the top, and the drain at the bottom. It's on when the gate is at a lower voltage than the source. So in this circuit, connecting the gate to GND turns Q2 on. Connecting the gate to +5V turns Q2 off.

IRF9Z34 is a power MOSFET device, so we can infer that it's intended to pass large currents. I don't see where the schematic shows how the LEDs are connected, but it's a safe bet that these large currents are due to the potentially many LEDs connected to this node. A P-channel device is needed because each LED has a separate switch already on the low side, so this circuit must switch the high side. Effectively:

schematic

simulate this circuit – Schematic created using CircuitLab

C8 is simply a decoupling capacitor, to reduce power supply impedance and filter switching noise generated by this circuit.

The net effect of these two inverters is no inversion. When CNTRL_L0 is high, T1 is saturated, pulling the gate of Q2 to GND, turning it on. When Q2 is on, ANODE_LEVEL_0 is effectively connected to +5V, providing voltage to illuminate the LEDs (if their individual low-side transistors, Q1, Q4, Q3 are also on).

When CNTRL_L0 is low, T1 is off. The gate of Q2 is pulled high by R3, switching it off. ANODE_LEVEL_0 is then connected to GND through R4. In this condition, both ends of the LEDs will be connected to GND, so can be no voltage across them, so they will not be illuminated.

It would have been possible to connect CNTRL_L0 directly to the gate of Q2. This would invert the logic, but the controller programming could take that into account. However, power MOSFETs have significant gate capacitance, at it takes significant current to switch them. It's likely that the shift registers selected did not have enough current drive capability to switch the power MOSFETs sufficiently fast.