Diy Xbox wireless controller adapter for Pc

This instructable will go over the steps to connect a RF module from an RROD xbox to your computer so you can use a wireless controller with your computer. ******DISCLAIMER******* DONT TRY THIS IF YOU DONT HAVE ANY EXPERIENCE WITH ELECTRONICS/SOLDERING OR COMPUTERS IM NOT RESPONSIBLE IF YOU SCREW UP…. now that we’ve gotten that out of the way
Xbox wireless controller

Step 1: Soldering ….

First strip the usb cable, inside there will be a black wire, a red wire, a white wire, and a green wire. there will also be some shielding and a shield ground wire (usually not covered) these you can cut back to the plactic. strip about an 1/8th inch of plastic off each of the four wires.

Next you will need to solder the diodes to gether in series ->-> and then solder the side with the line on it to pin 1 and the side without the line to the red wire in the usb cable **** make sure the diodes are the right way around before soldering****

Now you can solder the white wire to pin 2, the green wire to pin 3, and the black wire to pin 4

solder a piece of wire to each of pins 5-7 too, make sure they are long enough to connect to your arduin.

Step 2: Code

Xbox wireless controller Schematic

/* Arduino code to communicate with xbox 360 RF module.
Original work by (yaywoop) / additional ideas from Alexander Martinez – modified by dilandou (www.dilandou.com, www.diru.org/wordpress)
First sends LED initialisation code followed by LED startup animation code, then sleeps until a button press for sync command.
RF module must be powered with 3.3V, two diodes in series with USB 5v will do. Connect the USB wires to a host computer, and the data and serial wires to Arduino.
of course, make sure to have a common ground */

#include <avr/sleep.h>

#define sync_pin 2 //power button repurposed for sync button (pin 5 on the module)
#define data_pin 3 //data line (pin 6 on the module)
#define clock_pin 4 //clock line (pin 7 on module)

int led_cmd[10] =  {0,0,1,0,0,0,0,1,0,0}; //Activates/initialises the LEDs, leaving the center LED lit.
int anim_cmd[10] = {0,0,1,0,0,0,0,1,0,1}; //Makes the startup animation on the ring of light.
int sync_cmd[10] = {0,0,0,0,0,0,0,1,0,0}; //Initiates the sync process.
volatile boolean sync_enable = 0;

void sendData(int cmd_do[]) {
pinMode(data_pin, OUTPUT);
digitalWrite(data_pin, LOW);    //start sending data.
int prev = 1;
for(int i = 0; i < 10; i++){

while (prev == digitalRead(clock_pin)){} //detects change in clock
prev = digitalRead(clock_pin);
// should be after downward edge of clock, so send bit of data now
digitalWrite(data_pin, cmd_do[i]);

while (prev == digitalRead(clock_pin)){} //detects upward edge of clock
prev = digitalRead(clock_pin);
}
digitalWrite(data_pin, HIGH);
pinMode(data_pin, INPUT);
}

void initLEDs(){
sendData(led_cmd);
delay(50);
sendData(anim_cmd);
delay(50);
}

void wakeUp(){
sync_enable = 1;
}

void sleepNow() {
set_sleep_mode(SLEEP_MODE_PWR_DOWN); // set sleep mode
sleep_enable(); //enable sleep bit
attachInterrupt(0, wakeUp, LOW);
sleep_mode();
sleep_disable(); //disable sleep bit
detachInterrupt(0); // disables interrupt 0 on pin 2
}

void setup() {
Serial.begin(9600);
pinMode(sync_pin, INPUT);
digitalWrite(sync_pin,HIGH);
pinMode(data_pin, INPUT);
pinMode(clock_pin, INPUT);
delay(2000);

initLEDs();
//  sendData(sync_cmd);
}

void loop(){
Serial.println(“Sleeping.”);
sleepNow();
delay(200);
if(sync_enable==1) {
Serial.println(“Syncing.”);
sendData(sync_cmd);
sync_enable = 0;
}
}

or you can get it from here http://diru.org/wordpress/hacking/xbox-360-rf-module-arduino/

you will need to program your arduino with this code

I did not come up with this code all credit for this code goes to dilandou and Alex Martinez

Step 3: Software

download this http://www.microsoft.com/hardware/en-us/d/xbox-360-wireless-controller-for-windows
and install

go to the install folder (Microsoft Xbox 360 Acessories) in your program files

find Xusb21.inf this is the driver file for the software you will be modifying it so it will recognise your hardware

open it with a text editor or a program like Notepad++ (recomended)

find these headers [MSFT.NTx86.6.0], [MSFT.NTamd64.6.0], [MSFT.NTx86], and [MSFT.NTamd64].

you are going to replace the 5 lines of code under each of them

the original code looks like this

%XUSB21.DeviceName.Wired%=CC_Install, USB\Vid_045E&Pid_028E
%XUSB21.DeviceName%=CC_Install, USB\Vid_045E&Pid_0719
%XUSB21.DeviceName.Wired%=CC_Install, USB\MS_COMP_XUSB10
%XUSB21.DeviceName%=CC_Install, USB\MS_COMP_XUSB20
%XUSB21.DeviceName.Jump%=CC_Install, USB\Vid_045E&Pid_028F

what you will put in its place looks like this

%XUSB21.DeviceName.Wired%=CC_Install, USB\Vid_045E&Pid_0291
%XUSB21.DeviceName%=CC_Install, USB\Vid_045E&Pid_0291
%XUSB21.DeviceName.Wired%=CC_Install, USB\UNKNOWN
%XUSB21.DeviceName%=CC_Install, USB\UNKNOWN

now save it (make sure you save as a .inf file or it wont work)

now hook up the three extra wires on the RF module to the arduino if you havent already and plug the usb cable into your computer  it should light up but controllers wont sync yet

change the Microsoft Xbox 360 Acessories folder so that it is no longer read only

now open the device manager and find the unidentified usb device (the one with the yellow triangle)

right click and select update drivers then in the update driver software window select browse my computer then let me pick from a list of drivers for my device then select show all then have disk

finally navigate to the modified Xusb21.inf file and select it and install

after you install the drivers the controller should sync with the RF Module just hit the power button which has been repurposed as a sync button and sync like you would to an xbox

it should now work with any game that allows you to use a gamepa.

[box color=”#985D00″ bg=”#FFF8CB” font=”verdana” fontsize=”14 ” radius=”20 ” border=”#985D12″ float=”right” head=”Major Components in Project” headbg=”#FFEB70″ headcolor=”#985D00″]Parts List:
Arduino UNO – a wonderfull microcontroller board you can get it on ebay or at radioshack
RF Module – from a broken xbox/ ebay
Soldering Iron – mine is a cheap radio shack model
Solder – also avalible at a local radio shack
USB cable – scavenged from old electronics (i found it in my parts bin)
2 1N4001 diodes
Wire cutters – for cutting wire….
Wire strippers – for stripping wire…
pliers – for holding small things/ bending wire…
Wire – i have bolth some 22 AWG wire from radioshack and some fancy 30 AWG Kynar wire (easily avalible on ebay) pretty much any wire will work as long as it is small enough to solder to the connectons on the RF shield[/box]

 

For more detail: Diy Xbox wireless controller adapter for Pc


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top