Table of contents
This project describe an adapter that allows to plug an original NES gamepad in a PC. This is mainly useful for emulators, but maybe it can be used with some modern games too.
As with most purely digital projects the schematic is very simple. USB connector on one side, NES pad connector on the other, a few discrete component and one microcontroller to do all the work :
Parts list:
As a prototype I hand-carved a small PCB. Here the PCB itself acts as the USB connector, however I don't recommend it as it adds a little too much stress to the port to my liking.
Add a few layers of electrical tape on the back of the PCB to add some height. You can add some until there is enough, or do as I did and check the USB specification. The answer is that the tab should be 2.25mm high, so do that. Of course an actual plug has spring-loaded contacts so this won't be as good.
Actually I got the wiring wrong, I thought that the data lines could go anywhere and that it was just a matter of changing the configuration of V-USB, but it actually works only if D- is connected to INT0. Or at least I didn't manage to make it work with an interrupt-on-change pin. So I had to do a little point to point wiring. I also remade a proper layout using Eagle. You can download the project files below.
The microcontroller firmware is based on V-USB. It relies on the internal oscillator calibration feature of the ATtiny45/85 to adjust the CPU frequency within tolerance of USB timings without the need to use a crystal, which allowed fo an even smaller PCB. Grab the project files below.
I'm using USB HID class, so no driver is needed. Just plug it in and it will pop in the available game controllers. I've tested it with Windows 7 and Ubuntu. I'm pretty confident it will pose no problem under Mac OS.
A kit with a professionnally made PCB is available for purchase here.
That's all there is to it. Plug it in your PC and it should show up as a standard game controller. Buy the kit if you like, and have fun!
Comments
Any suggestions?
Any suggestions?
Will have to wait another 5 days to complete!
I know that the comment system needs improvement (lots of), I'm confident I'll allocate some time to work on it eventually ;-)
#define USB_CFG_DMINUS_BIT 3 //PB4, pin 3, pulled up to Vcc by 1.5k
#define USB_CFG_DPLUS_BIT 4 //PB3, pin 2, PCINT3 (note: not INT0!)
#define USB_INTR_CFG GIMSK
#define USB_INTR_CFG_SET _BV(PCIE)
#define USB_INTR_ENABLE PCMSK
#define USB_INTR_ENABLE_BIT PCINT4
#define USB_INTR_PENDING_BIT PCIF
#define USB_INTR_VECTOR PCINT0_vect
note: your comments system does not correctly HTML-sanitize input.
#define USB_INTR_CFG_SET (1
#define USB_CFG_DMINUS_BIT 3 //PB4, pin 3, pulled up to Vcc by 1.5k
#define USB_CFG_DPLUS_BIT 4 //PB3, pin 2, PCINT3 (note: not INT0!)
#define USB_INTR_CFG GIMSK
#define USB_INTR_CFG_SET (1