Hard Disk BLDC Moter Projects

 How to use Hard disk Moter in out Projects



Hello and Welcome Friends, today in this video i will tell you about reusing your old Damaged computer Hard drive Moter, how to remote moter from Hard disk drive and run it using ESC and servo tester, it is a High RPM (7200 to 10,000 RPM) moter, although it have less torque but still can fulfill many purposes,


Items Required

1) Hard disk moter
2) ESC controller
3) Servo tester


---------------------------------------------------------------------------------------------------

How to RUN hard disk BLDC moter using Ardino (Without ESC)


In this part of video I will tell you about how to run hard disk BLDC moter using Arduino without using ESC controller, in place of ESC controller we will use L293 Moter driver IC, since BLDC moter is 3 Phase DC Moter we will use any 3 outputs of IC L293 and switch their inputs using Arduino one by one, 


Items Required

1) Hard disk moter
2) L293 Moter driver
3) Ardino Nano
4) Fan Propeller

Circuit Diagram



Code:
------------------------------------------------------------------------------------

int phase1 = 2;
int phase2 = 3;
int phase3 = 4;

int x=60;
void setup() {
  pinMode(phase1, OUTPUT);
  pinMode(phase2, OUTPUT);
  pinMode(phase3, OUTPUT); 
}

void loop() {
    digitalWrite(phase1, HIGH);
    digitalWrite(phase2, LOW);
    digitalWrite(phase3, LOW);
delay(x);
    digitalWrite(phase1, LOW);
    digitalWrite(phase2, HIGH);
    digitalWrite(phase3, LOW);
delay(x);
    digitalWrite(phase1, LOW);
    digitalWrite(phase2, LOW);
    digitalWrite(phase3, HIGH);
delay(x);

}
---------------------------------------------------------------------------------------------------

No comments:

Post a Comment

Wifi Home automation Diy kit

 Wifi Home automation Diy kit By Manmohan Pal Wifi Home Automation Kit Hi, This is Manmohan Pal, I am glad to present a DIY kit for Home Aut...