Archive for the ‘Guides’ Category
Classic Controller Thumbstick Backlight
Written by eipromb on July 8, 2008 – 7:52 pm -Long overdue is a guide to add backlighting to the classic controller’s thumbstick. There’s another guide floating around the net that uses two contacts on the main PCB of the classic controller (the thumbstick has its own sub-PCB assembly). This one uses contact points on the thumbstick sub-assembly.
Posted in Guides | 148 Comments »
SMD LED Removal
Written by eipromb on April 22, 2008 – 2:08 pm -Since I’ve heard of a few stories of people ripping off pads, and destroying their wiimotes trying to perform the Player Indicator Mod, I’ve made a quick write up to show an easy way to remove the LEDs from the wiimote. One of the things to note is that the LEDs are not salvagable using this method, this method will destroy the LED but is fairly simple to do with the basic soldering irons on the market. Another thing to note is to try and use flux if poosible, it’ll make your life alot easier and be cleaned up with isopropyl alcohol once complete.
What you’ll need:
A Triwing Screwdriver
Soldering Iron and Solder
Desoldering braid
Start off by following the first 2 instructions of the Player Indicator Mod.
Step 1:
Once you’ve located the LEDs you’re about to remove, first start be removing the excess solder around the electrodes with the desoldering braid.
Step 2:
This step is where the damage occurs. Use your soldering iron to melt and “scrub” off the transparent lens of the LED.
Step 3:
At this point, add flux if you have it. If you don’t have flux you can melt a tiny bit of solder onto the tip of your iron, most solder these days have a bit of flux running in tubes within the solder wire itself. You can determine if the solder you’re using has is a flux core solder by snipping an end off with a pair of scissors or X-acto knife and looking at the center of the solder wire, flux is usually a light brown colour similar to maple syrup.
You’ll now have to lay the iron flat on the LED, you’re trying to make contact with both ends of the now destroyed LED. Give it a bit of time to heat up (roughly 5-10 secs) and start to gently slide the LED from side to side until it comes off the pad. DO NOT use excessive force while sliding, otherwise you may end up with a ripped pad on the wiimote PCB.
Step 4:
Finally this shows the LED removed and cleaned. I used isopropyl alcohol (aka rubbing alcohol) with a q-tip to clean the mess caused by the burning flux.
Overall:
And here’s all four steps on the wiimote.
Tags: guide, led, removal
Posted in Guides | 90 Comments »
Smart A Worklog
Written by eipromb on April 22, 2008 – 1:51 pm -This is not really guide but more of a worklog. After hearing and seeing complaints about the difficulty of the Multicoloured A Button Backlight mod, I decided to make it a bit easier. This is where the Smart A Button Backlight comes in, its the Multicoloured A Button Backlight at heart but powered by a microcontroller instead of the wiimote. Its interface to the wiimote would use a similar method as most of the newer modchips dubbed the ‘Quick-Solder’ method.
Choosing Components:
The mod would consist of 4 multi-coloured LEDs, appropriate current limiting resistors, a circuit board and a microcontroller to drive it. The 4 LEDs were an easy choice, I would use the same 0603 LEDs in blue, red, green and yellow at the original mod. For the resistors, it would have to be a value to keep the power consumption to a minimum, again using the same 0603 package as the LEDs. The circuit board would probably be the most expensive individual component as it is with most electronics of this nature, it’s design would have to incorporate the ‘Easy-Solder’ method of installation. And finally the microcontroller, my choice with this project was the Atmel ATTiny12. It’s a tiny and inexpensive chip at roughly $2 each, the chip also contains onboard eeprom memory, which its smaller brother the ATTiny11 doesn’t have. Why is eeprom memory important? It will be used to store the user’s preferred LED colour when the wiimote is powered down.
Schematic:
This is the schematic I came up with for this project, it’s rather simple.
Normally you would see LEDs being individually driven by a single pin on the microcontroller, the ATTiny12 has 6 I/O pins - 3 on each side. In this project however the LEDs aren’t driven by a dedicated pin, they’ve been charlieplexed to drive 4 LEDs using 3 pins. I’ve designed it this way to prevent a problem with designing the circuit board, I’ll explain it in futher detail in the board design section of this log.
Because this mod is mostly independent from the wiimote, there needed to be a way to set the colour of the LED. On the original Multicoloured A Button Backlight mod there were wires directly connected to each of the wiimote’s original LEDs, however this mod’s purpose was to avoid that problem all together. To solve this program I’ve used the PB1 pin of the microcontroller, this pin will be used as an input to set the colour of the LED and will be connected to the ‘home’ button on the wiimote. If you’re wondering why I used PB1 instead of the other 5 pins, it’s because this pin is the only pin on the ATTiny12 that can be used as an external interrupt. I’ll explain more about the interrupts, if you’re not familiar, once we get to the programming portion of the work log.
At this time the work log is only completed to this section, I’ll continue it and eventually get to the final product over the next few days. For the impatient ones, you can watch a short clip of the prototype over on youtube.
Circuit Board:
The circuit board was designed in PADS, which isn’t as popular as Eagle or OrCad but was what I was trained in and comfortable working with. There were obvious restrictions when designing the circuit board; it needed to fit in the wiimote, all the components and circuit traces had to work around the QuickSolder installation pads, and to make it DIY friendly it had to be done on a single layer.
The image above shows the layout I was able to design. Since the board would be designed single-sided, using 4 pins would have forced me to use a via (a plated hole that connects two or more copper layers) and be double-sided. Some may notice that there are 2 pins not being used, why didn’t I just use those? PB5 (pin 1) as an output can only act open-drain, meaning it is unable to directly drive an LED. PB0 (pin 5) would have worked, but would have required a second layer.
Smart A Button Firmware:
Here’s the source code for the Smart A Button’s microcontroller. It’s in assembler and was programmed in AVR studio, I realize that it may not be the neatest or most optimized code, but it is open for everyone to see and update if you desire.
If you’re not familiar with assembler, or just don’t want to bother looking over it, I’ll explain it’s function.
Upon powerup, the ucontroller looks for the pattern ‘01010101′ in the eeprom. If the ucontroller finds this code it will then retrieve the last saved setting in the eeprom and turn on the appropriate LED. If it does not find the pattern, it assumes that either this is the first time powering on, or the eeprom has been corrupted. It will then write the pattern, and a valid save setting into memory.
After powering on, and initializing the LED, the ucontroller goes into idle mode and does nothing. This is to keep the ucontroller from wasting power. A press on the ‘home’ key will activate an interrupt and awaken the ucontroller, it then waits for 1 second to pass before it allows the user to change the LED setting. It will turn off the LED as a visual indication that it is able to change settings, further presses on the ‘home’ button will cycle through the LEDs. After 2 seconds of inactivity, the ucontroller saves the setting in eeprom and returns to idle mode.
Pretty simple no? That also explains how to use it; hold the ‘home’ button down until the LED turns off, then keep pressing the ‘home’ button until the Mod has cycled to the LED you want to leave on. Leave the ‘home’ button for 2 secs and the value will be saved.
Here’s the source code for those who want to make your own, or edit it to make the mod do fancy tricks. I’ll post any user submission I get, so please send them in!
What you’ll need:
1x Blue 0603 LED
1x Red 0603 LED
1x Green 0603 LED
1x Yellow 0603 LED
3x 15ohm 0603 resistors
1x Atmel ATTiny12 SOIC8 package
1x Etched Circuit Board
If you have access to a programmer to program the ATTiny12 - the source code can be downloaded. And if you’re etching your own board - a 1:1 photopositive PDF of the board can be downloaded.That should be enough info to make your own for those who can, if you’re not able then you can get yours on the mod kits page.
Tags: backlight, multicolour, smart, wiimote
Posted in Guides | 146 Comments »
Wiimote Repair
Written by eipromb on April 22, 2008 – 1:37 pm -If you’ve have managed to break your wiimote in attempts to perform the Player Indicator Mod, or are just too scared to break your wiimote to do it, this guide is for you. The most likely scenario is that you ripped off a pad or two, but this guide also covers dead wiimotes and wiimotes with the IR sensor not functioning.
What you’ll need:
A Triwing Screwdriver
Soldering Iron and Solder
Desoldering Braid
Isopropol Alcohol
Tooth Brush
30 Gauge Wire
Step 1:
So here’s an example of a broken wiimote.

Step 2:
I’ve used the Isopropyl alcohol and a toothbrush to scrub off all the residue flux from the board giving a clean surface to start from.
Step 3:
Use the desoldering braid to clean up the pads, try not to apply too much pressure or heat or you’ll end up damaging or lifting them. The proper way to do it is to gently place the iron on the braid then slide the braid back on forth holding the other end of the braid. This is to remove any of the excess solder from the pads, also what happens is when you place too much heat and time on the joint you get something called intermetallic growth which weakens the joint.
Step 4:
At this point I would solder the LEDs on to complete the mod you’re performing. If there are any missing pads use this wiring diagram to run 30 gauge to the correct points. If you’ve managed to damage any of the resistors (outlined in white) you’ll need to replace them, they are 0402 470ohm resistors.
Step 5:
If for some reason you can’t solder to the vias near the ‘button 2′ pad, you’ll be able to run them directly to the controller.
Step 6:
If you’ve managed to solder everything on okay but your wiimote just doesn’t turn on any more, check the board for solder splashes and solder balls that may be causing shorts.
Step 7:
Once you’re sure that your board is clean, check the fuse pictured below. With a multimeter the fuse should read around 1 ohm, if the fuse has blown usually from the shorts in step 6, the fuse will need to be replace (safer) or jumpered (cheap).
Step 8:
From what I’ve seen the culprit to a non-functional IR sensor is mistake performing the Easy A Button Backlight Mod or the Nunchuck LED Backlight Mod. This can be verified by removing the LED from the board and checking the wiimote, once verified reperform the mod being careful not to cause any shorts. A note to remember is that the shorts maybe caused by the plastic housing pressing down on the exposed part of the LED.
Conclusion:
I hope this helps many of you attempting to perform the mods here on this site. If you still need help or are stuck in a situation that doesn’t apply to you, discuss it in the forums. There are lots of people there willing to help you out.
Tags: repair, wiimote
Posted in Guides | 164 Comments »

















