Hi Scott,
Scott Chiste wrote:So i've been thinking, based on the GPIO layout that is used on the pi 2, I can see that there are 2 5v outputs and one ground. Is there a way that I could connect one of those larger 10v DC fans to the raspberry pi instead of this small and noisy 5v fans?.
Voltage is a electric potential difference between two points, combining voltages sources result on
subtraction* (see kirchhoff's laws).
5V - 5V = 0 (common ground, potential between voltages.)
To get 10V, need to add both voltages. To do one of voltages need to be negative.
5V - (-5V) = 5V + 5V = 10V (common ground, potential between voltages.)
But, RPi not have a -5V rail.
* In fact it is a sum of voltages, but voltage sources are bipolar (have positive and negative poles).
Lets try battery association.
This [} is a my battery symbol, [ is the negative (-) pole and } the positive pole (+), a hypothetical 5V battery.
[}+[}=10V -
[}+{]=0V
{]+[}=0V
[}+[}+{]=5V
Voltage pins on RPi GPIO header (or other places) have this equivalent battery association {]+[}, the junction ]+[ is called common or ground. Also 3v3 have same common.
this explanation may be have some inaccuracy.
Is possible to get 10V or more from 5V using a DC to DC converter. A boost converter type or step up.
But, to power fan, use a primary power supply.
I know this question isn't related to the topic, but is there a way to connect a fan to the GPIO and be able to control the fan speed? Im a noob when it comes to linux, so I would appreciate if you guys explained this stuff a little more.
To control fan speed need to use PWM. RPi have only one hardware PWM channel available on GPIO header. But, can be use a software pwm on other pins. This pin need to be connected to driver circuity.