Can anyone explain how one would convert one voltage range to another? I'm going to need to convert a range of 0 to +5 volts into a range of -5 to +5 volts. How would this be accomplished? Thanks!
3 Answers
For working with power conversions rather than signal -
You can use various integrated circuits for this job, they're commonly referred to as Dc to DC converters, there's also a range of ways to do the conversion such as Charge pumps.
Here's a bunch of different DC to DC converters they have various different current ratings, some step the voltage up, some step down and others convert between positive and negative values.
This is a nice charge pump IC that can double or invert a voltage with the minimum of external components. You could even use a 555 timer to convert a voltage to a negative
Hope this helps.

- 3,325
- 2
- 28
- 39
-
2I am giving a +1, i am not sure if he wants something for power, or if it is a signal, you did power, i did signal. – Kortuk Jun 16 '10 at 16:36
-
I've also had success with CMOS voltage converters (http://www.national.com/mpf/LM/LMC7660.html#Overview) they're easy to use but limited in their usefulness – Jim Jun 16 '10 at 16:37
-
-
-
No, doing some work with a DAC-based idea, where I'll need to scale the voltage output. – Greg Jun 16 '10 at 23:06
-
I thought so, I was confused as to why you took an answer that was showing you how to get different power rails over one that scales the range. I think they are both right, but for different questions. – Kortuk Jun 17 '10 at 01:07
There are many ways to do this, the easiest I think would be a summing op-amp configuration.
I want to try using this ascii system, lets see how it does. This is a circuit that does what you want.
-5V
|
.-.
| |
| |2K 2K_
'-' .----|___|----.
| | |
| | |
'--------o |
| +Pwr |
___ | |\| |
input-|___|---------o----|-\ |
1K | >-----o----Output
.----|+/
| |/|
GND -Pwr
(created by AACircuit v1.28.6 beta 04/19/05 www.tech-chat.de)
So, it takes the input, doubles it and subtracts 5 V.
This will make 2.5V become 0V, 0V becomes -5V, and 5V stays 5V.
It does it linearly over the range, this can be valuable if it is a signal that needs to be spread over a new range.
Hope this helped.

- 13,362
- 8
- 60
- 85
-
1This solution is for a signal, if you want to power a system with it, i may have missunderstood you. – Kortuk Jun 16 '10 at 16:31
-
-
2
-
1They are awesome, want links? http://chiphacker.com/questions/1024/uploading-schematics-for-chip-hacker/2537#2537 – Kortuk Jun 16 '10 at 16:58
-
1
-
I would have assumed he is looking for a way to convert a signal since he was talking about a voltage range. – mjh2007 Jun 16 '10 at 16:59
-
That was my assumption, but the beautiful part of this board is that multiple people respond and we covered the options. – Kortuk Jun 16 '10 at 17:56
+5V
|
.-.
| |
| |2K 2K_
'-' .----|___|----.
| | |
| | |
'--------o |
| +Pwr |
| |\| |
.----|-\ |
| >-----o----Output
input--------------------|+/
|/|
-Pwr
(created by AACircuit v1.28.6 beta 04/19/05 www.tech-chat.de)
This will make 2.5V become 0V, 0V becomes -5V, and 5V stays 5V.
The circuit posted by Kortuk will invert the input resulting in a mapping from [0v -> 5v] to [+5v -> -5v] instead of [0v -> 5v] to [-5v -> +5v].
Here is a simulation.

- 51
- 2