Transistor: Mix both GND

transistors

I Googled a little bit about transistors and I figured out I have a general understanding problem. Can I simply connect the emitter of the transistor to the GND of my microcontroller that controls the transistor but also to the GND of the 12V I try to control with the transistor, to close both circuits?

Would the circuit shown below work?

schematic

simulate this circuit – Schematic created using CircuitLab

Best Answer

The circuit you show in your scheme will not work. Chances are that the transistor is damaged. For a transistor connected as a switch, it is normal to place the load in the collector circuit, as I show below

schematic

simulate this circuit – Schematic created using CircuitLab

This is the basic way to connect a NPN transistor in the output of a microcontroller to activate a load.

When the output pin is in high, the transistor will conduct, feeding the load, in this case an LED. The value of the base resistance depends on the supply voltage of the microcontroller and the maximum current that support. The value of the collector resistor depends on the source Vcc, and the load that would like to activate.

This way, you can share the GND connection between the microcontroller and the power supply to the load.

Related Topic