element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Raspberry Pi B inside a xBox 360 Shell. Power button/lights question?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 4 replies
  • Answers 1 answer
  • Subscribers 666 subscribers
  • Views 1386 views
  • Users 0 members are here
  • raspberry_pi
Related

Raspberry Pi B inside a xBox 360 Shell. Power button/lights question?

Former Member
Former Member over 10 years ago

Hi

I currently have a raspberry pi B board with a self powered USB hub attached, running two USB hard drives plugged into it. i have it all sitting inside a xbox 360 shell and i was wondering if it is possible to wire up the 4 leds and power button(on the xbox RF module) to the gpio headers on my Pi, so I can push the button and it will turn on my pi and light up the LEDs.

 

I would also like to have everything power off one mains adapter, im guessing i needing to add a power board but which one?

Shutdown circuit (use your own switch) | Mausberry Circuits

https://www.modmypi.com/raspberry-pi-expansion-boards/nwazet-pi-power-supply

 

I hope someone can helpme out.

 

Thanks

 

Mike

  • Sign in to reply
  • Cancel
Parents
  • CrazyFace
    0 CrazyFace over 10 years ago

    In a nutshell, yes it can sort of be done - when started it mimics the XBOX 360 power on and start sequences with spinning green leds, unfortunately it doesn't Light up the leds in accordance to which controllers are attached yet image something I'm currently working on, along with trying to add the command to shut off wireless controllers remotely and start safe shutdown of the RasPi using the original power button but I need some guidance with my code as I'm no programmer and just winging it hoping I'm heading the right direction, but it will give you the capability to sync controllers without using a Arduino. Which will hopefully set you off in the right direction.

    rf module wiring for raspberry pi

    You will need to install wiringPi onto your Raspberry Pi so the code I direct you too at the end will work you will additionally need xpad and/or xboxdrv installed too..

    Wiring the RF Module to the Pi:(please note my setup is for a Raspberry Pi 2 B and gpio pins used below may not match your model so please check to ensure the correct pins are used.

    RF pin 1: +3.3vdc connected to RasPi  physical pin 1: +3.3vdc.

    RF pin 2: USB D- (This and USB D+  need to be connected to a usb cable and plugged into your RasPi) connected to the white wire of usb cable.

    RF pin 3: USB D+(As above) connected to green wire of usb cable.

    RF pin 4: Ground connected to any ground pin on RasPi must create a common ground between them.

    RF pin 5: XBOX power button connected to RasPi physical pin 7(gpio7/bcm4/gpclk.0). This will be your new sync button.

    RF pin 6: FB1/Serial Data connected to RasPi physical pin 3(gpio8/bcm2/sda.1). sda.0 will be fine on older versions.

    RF pin 7: FB2/Serial Clock connected to RasPi physical pin 5(gpio9/bcm3/scl.1). scl.0 will also be fine.

    RF pin 8: Ground. as above

    RF pin 9: not used.


    Basically at this stage your Raspberry Pi and XBOX 360 Wireless controllers can already communicate with each other through the RF Module - that is if you remembered to install the drivers, and have a controller already synced, but what if you haven't or you need to sync another controller for say a 2 player game of Mario Kart on your favorite emulator, well this is where this little bit of programming I found comes in handy, All you need to do is go here: http://pastebin.com/AiAiWYdh download the .c file to your RasPi, Then all you have left to do is edit the file to suit your RasPi and compile with :" gcc -o RFSync AiAiWYdh.c -lwiringPi ", change RFSync to whatever you want to call it.

    when compiled you will need to give it root access by typing: " sudo chmod -w 777 /home/pi/RFSync " you probably want to change the path to suit your files location and maybe adjust the permissions a bit I'm new to Raspberry Pi and still don't understand everything I assume I have taken write privileges away but have still given it more than it actually needs to run correctly.

    Now I've not actually managed to get to this part myself so I cant explain how to do it yet but we need this to run at start-up but at the same time we need it to wait till xpad and/or xboxdrv have started because it needs them drivers to identify the RF Module as a wireless receiver. Good luck getting it going, Which I'm sure you wont have a problem with, if I can do it anyone can.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • CrazyFace
    0 CrazyFace over 10 years ago

    In a nutshell, yes it can sort of be done - when started it mimics the XBOX 360 power on and start sequences with spinning green leds, unfortunately it doesn't Light up the leds in accordance to which controllers are attached yet image something I'm currently working on, along with trying to add the command to shut off wireless controllers remotely and start safe shutdown of the RasPi using the original power button but I need some guidance with my code as I'm no programmer and just winging it hoping I'm heading the right direction, but it will give you the capability to sync controllers without using a Arduino. Which will hopefully set you off in the right direction.

    rf module wiring for raspberry pi

    You will need to install wiringPi onto your Raspberry Pi so the code I direct you too at the end will work you will additionally need xpad and/or xboxdrv installed too..

    Wiring the RF Module to the Pi:(please note my setup is for a Raspberry Pi 2 B and gpio pins used below may not match your model so please check to ensure the correct pins are used.

    RF pin 1: +3.3vdc connected to RasPi  physical pin 1: +3.3vdc.

    RF pin 2: USB D- (This and USB D+  need to be connected to a usb cable and plugged into your RasPi) connected to the white wire of usb cable.

    RF pin 3: USB D+(As above) connected to green wire of usb cable.

    RF pin 4: Ground connected to any ground pin on RasPi must create a common ground between them.

    RF pin 5: XBOX power button connected to RasPi physical pin 7(gpio7/bcm4/gpclk.0). This will be your new sync button.

    RF pin 6: FB1/Serial Data connected to RasPi physical pin 3(gpio8/bcm2/sda.1). sda.0 will be fine on older versions.

    RF pin 7: FB2/Serial Clock connected to RasPi physical pin 5(gpio9/bcm3/scl.1). scl.0 will also be fine.

    RF pin 8: Ground. as above

    RF pin 9: not used.


    Basically at this stage your Raspberry Pi and XBOX 360 Wireless controllers can already communicate with each other through the RF Module - that is if you remembered to install the drivers, and have a controller already synced, but what if you haven't or you need to sync another controller for say a 2 player game of Mario Kart on your favorite emulator, well this is where this little bit of programming I found comes in handy, All you need to do is go here: http://pastebin.com/AiAiWYdh download the .c file to your RasPi, Then all you have left to do is edit the file to suit your RasPi and compile with :" gcc -o RFSync AiAiWYdh.c -lwiringPi ", change RFSync to whatever you want to call it.

    when compiled you will need to give it root access by typing: " sudo chmod -w 777 /home/pi/RFSync " you probably want to change the path to suit your files location and maybe adjust the permissions a bit I'm new to Raspberry Pi and still don't understand everything I assume I have taken write privileges away but have still given it more than it actually needs to run correctly.

    Now I've not actually managed to get to this part myself so I cant explain how to do it yet but we need this to run at start-up but at the same time we need it to wait till xpad and/or xboxdrv have started because it needs them drivers to identify the RF Module as a wireless receiver. Good luck getting it going, Which I'm sure you wont have a problem with, if I can do it anyone can.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube