Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
HDD as a motor.
#11
I would say you need at least 8 AA batteries because an HDD normally gets 12v.

I have no idea what you are building but I will search on google sounds interesting.

I would love to see your final product and how you did it.


Cheers
Reply
#12
This was the coolest and craziest idea I've heard this week.
Can't help though, sry. Good luck with it
Reply
#13
My problem is solved Big Grin I found a motor from a toy car (doh could have used one in the first place) But now I have this HDD motor lieing around.. Anyideas what to do with it? Oh and btw the vehicle I was planning to build is under 10 grams REALLY light in my opnion haha Big Grin BALSA WOOD FTW. For all you that are googling what i'm talking about. Its a out of school activity called Science Olympiad, Event Battery Buggy Big Grin.
Reply
#14
Hey Keyreaper,

I found your thread really interesting and went to work.

I found a code that can make a stepper motor work from a printer port but now I need a "Borland Turbo Pascal compiler" Can you maybe help?

The code is:
Software to control Motors connected via a Disk Drive
Logic PCB to an IBM-PC Parallel Printer Port
The program assumes this cable design
program stepit; { Borland Turbo Pascal for MS-DOS }

uses crt;

const OUTREG = $378;
INREG = OUTREG + 1;

ALLOFF = $FF; { 1111 1111 }

NDS0 = $E0; { 1110 0000 }
NDS1 = $D0; { 1101 0000 }
NDS2 = $B0; { 1011 0000 }
NDS3 = $70; { 0111 0000 }

NMOTOROFF = $08; { 0000 1000 }
NMOTORON = $00; { 0000 0000 }

CLOCKWISE = $00; { 0000 0000 }
ANTICLOCK = $02; { 0000 0010 }

NOSTEP = $01; { 0000 0001 }
STEP = $00; { 0000 0000 }

procedure delay;
var i: integer;
begin
for i := 1 to 10000 do { nothing }
end;

begin { main }
ClrScr;

writeln;
writeln('***** Ian''s amazing motors *****');
writeln;

port[OUTREG] := ALLOFF;

write('All OFF to start with ');
readln;

write('Stepper Motor only - Clockwise ');

repeat
port[OUTREG] := NDS1 + NMOTOROFF + CLOCKWISE + NOSTEP;
delay;
port[OUTREG] := NDS1 + NMOTOROFF + CLOCKWISE + STEP;
delay
until keypressed;
port[OUTREG] := NDS1 + NMOTOROFF + CLOCKWISE + NOSTEP;
readln;

write('Stepper Motor only - AntiClockwise ');
repeat
port[OUTREG] := NDS1 + NMOTOROFF + ANTICLOCK + NOSTEP;
delay;
port[OUTREG] := NDS1 + NMOTOROFF + ANTICLOCK + STEP;
delay
until keypressed;
port[OUTREG] := NDS1 + NMOTOROFF + ANTICLOCK + NOSTEP;
readln;

write('Servo Motor only ');
port[OUTREG] := NDS1 + NMOTORON + NOSTEP;
repeat { just sit there } until keypressed; readln;
port[OUTREG] := NDS1 + NMOTOROFF + NOSTEP;

write('Stepper Motor and Servo Motor ');

repeat
port[OUTREG] := NDS1 + NMOTORON + CLOCKWISE + NOSTEP;
delay;
port[OUTREG] := NDS1 + NMOTORON + CLOCKWISE + STEP;
delay
until keypressed;
port[OUTREG] := NDS1 + NMOTORON + CLOCKWISE + NOSTEP;
readln;

port[OUTREG] := ALLOFF;

write('That''s all, folks ! ');
readln
end.


Any help will be helpfull.
Reply
#15
(10-08-2009, 02:12 AM)dragonx Wrote: ANGLE GRINDERS ARE DANGEROUS do not play with em u can cut ur hands off with it

Maybe if you're a spastic?

They're not that hard to operate safely!
Reply
#16
(10-15-2009, 12:53 AM)Extasey Wrote: Maybe if you're a spastic?

They're not that hard to operate safely!

Thread should be closed anyway as its been resolved....
Shame mods shame lolol.
As for the angle grinder although funny its not possible. You would need 240 volt not 24 guys and gals.
I think the original idea would have actually worked. Prob not real well but i think it would have and loved the idea.
Would have ran on 12 volts just fine and spooled quick as lol. Would have been a rocket had it been light enough. What 0 - 7200 rpm in a sec lolol.
The Rules!
FTW Forum <-- Home of the Damned! --> Join me On MM


Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  HDD's Sound malfoy_G_PIR 2 737 10-14-2014, 04:16 AM
Last Post: Aura
  Suggest me an OS for 2nd hdd Herm1t 21 3,315 03-13-2011, 07:26 AM
Last Post: χєℓD4RK-H4x0Rℓєχ
  HDD Not Registering Jordan L. 13 2,620 03-09-2011, 07:15 PM
Last Post: Codad Law
  Portable HDD Codad Law 13 4,202 03-07-2011, 11:38 PM
Last Post: gsp
  [Help] Seagate Portable HDD. ––––•(-• Ωмεgα •-)•–––– 6 1,462 01-16-2011, 05:09 PM
Last Post: Deltron

Forum Jump:


Users browsing this thread: 1 Guest(s)