N64 Controller Serial Protocol Sniffer
There are tutorials out there for using an controller with an Arduino, but using the more complicated N64 controller and its analog joystick has a definite appeal. If you have an Arduino around and don't want to buy an Adaptoid, this instructable will make it possible to play emulated games in Project 64 with your Ardunio and an N64 controller. Is this hard? / Will it damage my stuff?This will not modify your controller in any way, and the wiring is extremely simple, so if you do everything carefully there should be no risk to your controller, and you can unhook it at any time to use with a N64 console. What you will need: - $30 - free - free3 pieces of wire - free (I hope)USB cable. The first thing you need to do is connect your Arduino to the controllerThe controller only uses three leads: +3.3V, signal, and ground.Looking directly at the plug, ground is farthest left, signal is in the middle, and +3.3V is on the right.
Serial Sniffer Cable
Using the wire, connect ground and +3.3V to the respective pins on the Arduino, and connect the signal lead to the Digital 2 pin on the Ardunio. NOTE: If you have other code on your Arduino, you should disconnect the controller and upload the new code from the next page t o the Arduino before powering it up with the controller attached. Connect the ArduinoConnect the USB cable and the Arduino will have power. This code was written by me, with parts of the N64Arduino file based on assembly code written by Andrew Brown. ZIP Archives:The two Zip files below contain the code needed to run the Arduino and then to interpret the data it sends to the computer.
The N64Arduino file needs to be compiled in the Arduino IDE, and the N64Controller runs in Processing 1.0. N64ArduinoThis PDE file should upload to your Arduino and run without a hitch if you have everything connected properly.
It simply queries the N64 controller for data on the buttons and Analog stick and sends it back to the computer over the serial port. It is easy enough to modify, for example, you could use the methods from this file to query a controller and use the data to run an Arduino robot instead of transmitting it back to the computer. N64ControllerThis is a Processing 1.0 project that takes the data transmitted by the Arduino and converts it into keyboard presses that you can map to an emulator like Project 64. You might need to change the line String portName = Serial.list1; to match the your Arduino, it should be either Serial.list0; Serial.list1; or Serial.list2; EDIT: Add'import java.awt.Robot;'import java.awt.AWTException;'import java.awt.event.InputEvent;' to the code if you are using Processing 1.1 N64Controllermouse This is the same as N64Controller, except that the analog stick controls your mouse, not the arrow keys. A and B are right and left click, respectively.
To activate the mouse, press the start button on your controller. Before you can use the controller, the Arduino needs to be connected and running the code you downloaded in the last step, and Processing 1.0 needs to be open with the N64Controller program running.Test it out in Notepad, pressing the A button should type an A, B should type a B, etc.So now you have a working controller (hopefully) and you want to play some games. Downl0ad PJ 64 Set Key Mappings Start PJ 64 and open the settings menu first (Ctrl+T). Change the input controller to N-Rage's direct input.
Open the 'Configure Controller Plugin' menu and set the mappings using the controller. Start Playing! You should be all set to go now! Download some ROMs and start enjoying your homebrew N64 adapter. I have actually built on of the v-usb based adapters from raphnet.net I part of the way though porting his implementation into something more arduino friendly.
Above, this whole life datacolor dataflash 100 driver decided and there datacolor dataflash 100 canon no luck distance. Datacolor dataflash 100 driver. SF500 Series, September 2002. Microflash 100d & 200d, February 2010. Dataflash 100 s/n.
I saw this link and spent a little time today to see how well it works. The code isn't very pretty but it does work. I modified it to read 2 n64 controllers at the same time and created a HID usb descriptor for v-usb for it to show up as 2 gamepads. No host software needed. Just a note, 2 of your links from above are dead. Hopefully I can find the time to spin off a continuing instructable that shows how much more power you can get out of this set up. Thanks for sharing.
I've been trying to get Controller Pak support working, but it seems the timing of the sending/polling isn't accurate enough as getting the controller status and button state works fine (verified this by logging the data) but the mempak refuses to work. I don't know assembly so I can't convert the entire code to it, does anyone have any suggestions for optimizing my code and making timing more accurate? Arduino code can be found here: Project64 plugin source: https://dl.dropboxusercontent.com/u/8225581/ArduiN64.rar. Just saw your reply, in that code it uses COM4 but you can change it in Controller.cpp near the top at #define comPort. I never added a config window to allow changing the COM port since having it hardcoded worked fine for my own personal use and I was more interested in getting controller paks working.
Still not sure why the Memory Pak doesn't work, it seems to transfer data fine but struggles with the 32-byte data packets and the data gets corrupted. Might be a timing issue. It's a pity since the only adapter that works with paks to my knowledge is the Adaptoid and those are not easy to get anymore. Would be nice to have full pak support, add USB HID and maybe do a production run of some boards if people are interested.
Comments are closed.