dhansel / ArduinoFDC

Library for using an Arduino as a floppy disk controller
GNU General Public License v3.0
272 stars 41 forks source link

Power connection? #7

Closed zechmer closed 1 year ago

zechmer commented 1 year ago

I did not find a description of how to power the floppy drive with 12V and 5V power connections (I know that you can power it with ATX etc.). In the picture it seems that USB is used for power (aren't the 12V necessary?). Can you please add such a description? What did you use?

mchro commented 1 year ago

@zechmer Connecting only 5V power should be enough, if not for all floppy drives then for almost all. Pinout is pretty simple:

https://en.wikipedia.org/wiki/Berg_connector

dhansel commented 1 year ago

As far as I know 3.5" floppy drives only need 5V power but 5" drives do need 5V and 12V power. In the picture the black cable going to the left is the power cable, coming from an external hard drive power supply (something like this) with an adapter for the smaller 3.5" drive connector.

You should be able to power a 3.5" drive directly from USB, i.e. connect the 5V and GND pins from the Arduino to the 5V and GND pins on the floppy power connector. I have done that before. Use a good USB cable from the PC to the Arduino, otherwise you will get too much voltage drop over the cable and things won't work correctly.

dhansel commented 1 year ago

I have added a section about the power supply in the description. Thanks for the suggestion!