Converting/scaling a voltage range ([0v - 5v] to [-5v - +5v])

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.


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.