Friday 6 September 2019

amplifier - Amplify µC output from 5V to 12V for external IC that needs 12V to control without inverting


Does the following circuit boost the power of an arduino output (Arduino Mega 2560) from the 5V of the Pin to the 12V that I need to control a Wireless Transmitter Module without Inverting it?


Can I use 1kOhm for R3? I have no 2k2 laying around.


TX_DATA_5V is the Output of the µC, TX_DATA_12V will be connected with TX Module.


Circuit to Boost from 5V to 12V



Answer




It does look like it should work. With a 5V input at the emitter, T1 base will be reverse biased by about 3V (no problem here for most transistors) and there should be no collector current and TX out will be at 12V.


With 0V at the input, the base is now conducting forward current and the BJT shouls turn on and the collector will drop to 200mV above the input (if input at 0V then that's 200mV above ground).


Things to watch for - rise time of the 12V out is subject to the speed at which the transistor turns off so if you expect to pass data thru at 1Mbps forget it but at 10kbps (some hand-waving going on) it should be OK.



Can I use 1kOhm for R3? I have no 2k2 laying around



It should be OK but you are starting to approach the maximum reverse voltage for a B-E junction on a BJT - check the data sheet to see that -4V reverse bias on base-to-emitter is well-within the spec.


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...