I realised that the Lamptron FC5 V2 was 3 pin. =.= dumb me.
But after seeing your replies, I'm kinda interested. What exactly is PWM? I heard you needed PWM to control fans, but you guys were talking about how you can control 3 pin fans
Wikipedia has a nice little article on PWM
here.
The basic concept is that by switching voltages between a high and a low value
very quickly you deliver
on average an effective value somewhere in between
the two to whatever you're powering with it.
Example:
- D: Duty cycle, the amount of time the signal is active (see here). 0<=D<=1
- y_max: maximum pulse value
- y_min: minimum pulse value
The formula from the Wiki article gives us:
Code:
y_average=D*y_max+(1-D)*y_min
So, let's say we have a PWM signal with a minimum of 0 V and a maximum of 12 V, active
for 5/12 (roughly 41.67%) of the time:
Code:
y_average=5/12*12 V+(7/12)*0=5 V
So your fan will effectively run at 5 V in that scenario.
This is pretty much what the fan controller does to control the fan's speed, and
is what jamesriley mean with "switching the fan on and off very quickly" above
(I think). So we're talking about a fan controller with 3 pin connectors in this case.
I haven't really looked into the 4 pin PWM fans and how that's done in detail, so
I'm not entirely sure how that works in the circuit.
Be aware though that since fans also have internal control circuits there can
sometimes arise problems between controllers and fans.