check in
Ongoing

PWM Fan Speed Controller v1.1

STDPWM Fan Speed Controller v1.1

tag

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

IDNameDesignatorFootprintQuantity
12N2222Q2,Q3TO-92-3_L4.9-W3.7-P1.27-L2
2EK500V-05PCN1,CN2EK500V-05P2
37805U1TO-220-3_L10.0-W4.5-P2.54-L1
4Arduino NanoMODUL1ARDUINO_NANO21
5330nC1RAD-0.11

Attachments

OrderFile nameDownload times
No data
Clone
Add to Album
0
0
Share
Report

Project Members

Comment

All Comments(1)
Sort by time|Sort by popularity
Followers0|Likes0
Related projects
Empty

Bottom Navigation