
PWM Fan Speed Controller v1.1
STDPWM Fan Speed Controller v1.1
1.1k
0
0
0
Mode:Full
License
:CERN Open Hardware License
Creation time:2019-12-18 18:38:40Update time:2019-12-31 17:52:44
Description
Added A/C signal/supply wire (untested)
Arduino sketch (without A/c):
int potPin = A0;
int motorPin = 9;
int potValue = 0;
int motorValue = 255;
void setup() {
// Serial.begin(9600);
analogWrite (motorPin, motorValue);
delay(5000);
}
void loop() {
potValue = analogRead(potPin);
motorValue = map(potValue, 0, 1023, 20, 255);
analogWrite(motorPin, motorValue);
// Serial.print("pot = " );
// Serial.print(potValue);
// Serial.print(" motor = ");
// Serial.println(motorValue);
// delay(2);
}
Design Drawing
schematic diagram
PCB
BOM
ID | Name | Designator | Footprint | Quantity |
---|---|---|---|---|
1 | 2N2222 | Q2,Q3 | TO-92-3_L4.9-W3.7-P1.27-L | 2 |
2 | EK500V-05P | CN1,CN2 | EK500V-05P | 2 |
3 | 7805 | U1 | TO-220-3_L10.0-W4.5-P2.54-L | 1 |
4 | Arduino Nano | MODUL1 | ARDUINO_NANO2 | 1 |
5 | 330n | C1 | RAD-0.1 | 1 |

Add to Album
0
0
Share
Report
Project Members
Followers0|Likes0
Related projects

Comment