Guides to jumpstart your Retrogaming lifestyle
User avatar
CRTGAMER
Next-Gen
 
Posts: 11933
Joined: Tue Jan 05, 2010 11:59 am
Location: Southern California

Re: Wii Gamecube Guide - WiiU and Wii Selects vs Original

by CRTGAMER Sat Mar 19, 2016 6:56 pm

Image

CRTGAMER wrote:1. Buy WiiU Pikmin 3 while you can, the disc version will shoot up in price!

2. Buy the original Wii Super Mario All Stars if you want at least the Game Manual. Search ALL the Gamestop locations, just maybe on a slim chance might find the Outer Cardboard Box, History Book and Sound Track CD.
- OR -
3. Wii Mario All Stars Bonus Sound Track with History Book is currently averaging for only ten dollars online. Buy the newer Selects or Original locally and order the bonus material online from Ebay IMMEDIATELY. That bonus CD Red DVD Case with History Book will also shoot up in price as other buyers scramble to "CIB" the newer Selects incomplete release. As mentioned earlier, the rarest item of this game would be the original release Outer Cardboard Box!

jmbarnes101 wrote:I found the CD, case, and book for $8 shipped. While I would prefer the original bundle with the outer box I'm ok with the cheaper version and the extra case.

Good for you! That History Soundtrack set might be hard to find inexpensive in a few months.

Image

CRTGAMER wrote:No worries on the faded cover Pikmin 3 original; a replacement Case, Cover, and Manual on the way!

The Pikmin 3 case, cover and manual came in all in crisp new condition! I now own both the Original and Selects CIB (picture at bottom previous page) and both with the color paper manual inside! :mrgreen:

Both discs have identical labels, nothing showing if Selects or Original. When testing each game disc, the title screen show version 2.0.0. My son had previously purchased the download version, perhaps the 2.0.0 reflects the update already in the console? The same game save works on both discs and the download versions.

Image
Image
CRT vs LCD - Hardware Mods - HDAdvance - Custom Controllers - Game Storage - Wii Gamecube and other Guides:
CRTGAMER Guides in Board Guides Index: http://www.racketboy.com/forum/viewtopic.php?p=1109425#p1109425

Image
Image
User avatar
CRTGAMER
Next-Gen
 
Posts: 11933
Joined: Tue Jan 05, 2010 11:59 am
Location: Southern California

Wii Gamecube Guide - Resetting Wii Forgotten Password

by CRTGAMER Thu Apr 21, 2016 9:54 am

Resetting Wii Password - Download All Wii Channels
I recently found a Wii console (Gamecube port vertical model) on Craigslist for only $15. I have backups of all consoles and finally have a backup Wii console! This will be placed in the bedroom, a compact console for the TV shelf with wireless controllers. The Wii came tested from a Recycle Center with the original wired sensor bar, original composite cable (will switch to component) and Nyco power adapter. No Wiimote or Nunchuck, but I have spares already. Concerned the disc reader would not work, but for fifteen bucks a good price!

Wii Craigslist.JPG
Wii Craigslist.JPG (53.23 KiB) Viewed 14499 times

Curses, the Wii online features were disabled with Parent Controls and a hidden password. To unlock the password, a telephone call to Nintendo has to be done. Not only having to wait for an operator, but this support will eventually go away. :?

Image

No problem for an easy password unlock after visiting the site linked below.

Have the Date and Confirmation Inquiry Number off the Wii console ready:

https://wii.marcan.st/parental

The site also provides the Source Code. I copy pasted it below for offline use in case the site ever goes down:
#!/usr/bin/python
# Wii parental control password reset tool
#
# Copyright 2008-2009 Hector Martin Cantero <hector@marcansoft.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 or version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.

import time, urlparse

def application(environ, start_response):
start_response("200 OK", [("Content-type","text/html")])
yield """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Wii Parental Control Password Resetter</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">

.title {
font-size: 18pt;
font-family: sans-serif;
}

.response {
font-size: 16pt;
font-family: sans-serif;
}

.error {
color: red;
font-size: 16pt;
font-family: sans-serif;
}


</style>
</head>
<body>
<div class="title">Wii Parental Control password reset tool</div>"""

uri = environ["REQUEST_URI"]
qs = urlparse.urlparse(uri).query
form = urlparse.parse_qs(qs)

ctime = time.time()

def opt_date(delta):
t = time.gmtime(ctime + delta * 3600 * 24)
if delta == 0:
selected = ' selected="selected"'
else:
selected = ""
return '<option value="%02d%02d" %s>%s</option>'%(t.tm_mon,t.tm_mday,selected,time.strftime("%a, %d %b %Y",t))

class CRC32:
def __init__(self):
self.gentable()


def crc32(self, input, crc=0xffffffffl):
count = len(input)
i = 0
while count != 0:
count -= 1
temp1 = (crc >> 8) & 0xFFFFFF
temp2 = self.table[(crc ^ ord(input[i])) & 0xFF]
crc = temp1 ^ temp2
i += 1
return crc

def gentable(self):
self.table = []
for i in range(256):
crc = i
for j in range(8):
if crc & 1:
crc = (crc >> 1) ^ 0xEDB88320l
else:
crc >>= 1
self.table.append(crc)

def error(s):
return '<div class="error">%s</div>'%s

def process():
try:
int(form["number"][0]) #validate
if len(form["number"][0]) != 8 or not all([x in "0123456789" for x in form["number"][0]]):
raise ValueError()
except:
return error("Please provide a valid 8-digit confirmation number")

try:
int(form["date"][0]) #validate
if len(form["date"][0]) != 4 or not all([x in "0123456789" for x in form["date"][0]]):
raise ValueError()
except:
return error("Invalid date")

fullnum = form["date"][0] + form["number"][0][4:8]

crc = CRC32().crc32(fullnum)
code = ((crc ^ 0xaaaa) + 0x14c1) % 100000

return '<div class="response">Your unlock code:<span class="code">%05d</span></div>'%code

if form.has_key("submit"):
yield process()

yield """
<div class="form">
<form action="/parental">
<p>Confirmation Number:
<input name="number" type="text" size="9" maxlength="8" value="" /></p>
<p>Current Date in your timezone:
<select name="date" size="1">"""
yield opt_date(-1)
yield opt_date(0)
yield opt_date(1)
yield """</select><br /></p>
<p><input name="submit" type="submit" value="Get Reset Code" /></p>
</form>
</div>
<p>
<a href="http://validator.w3.org/check?uri=referer"><img
src="http://www.w3.org/Icons/valid-xhtml10-blue"
alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
<a href="http://jigsaw.w3.org/css-validator/">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss-blue"
alt="Valid CSS!" />
</a>
<br />
<a href="parental_src.py">Source code</a>
</p>

</body>
</html>"""
Wii Password Reset.JPG
Wii Password Reset.JPG (40.64 KiB) Viewed 14499 times

After removing the Parent Lockout, I enabled the Wifi and confirmed the disc reader works just fine even with dual layer disc Wii Smash Brothers. As Forest Gump says, "Life is like a box of chocolates, you never know what you'll get inside." Discovered a game, N64 Virtual Console Mario 64 was installed, a nice bonus. Good thing I did NOT reset the console and just removed the Parent Lockout instead. :D

Download all Wii Channels before support is shut down
Some Wii Channels are no longer available. Download everything you need immediately off the Wii Shop before the Wii Channels all go away. :idea:

Image

1. Latest update to allow full compatibility to all games and 32gb SD Card.

2. Internet Browser Opera.

3. YouTube Browser.

4. Photo Channel 1.1.

5. Zelda Skyward Sword Save File Fix.

6. Wii to WiiU Transfer Tool.

5. Movie Rental Channels such as NetFlix, Amazon and Hulu.

6. ALL Free (currently at 48) Game Demos. 4 have been removed already.


Image

With just a 2gb SD Card, all game demos can fit on it. The game demos are still locked to the console, but at least archived for when support goes away. I have the Zelda fix saved in case I every play the game on this console. Debating if I will ever need NetFlix, should go ahead and snag it while available. More importantly, the Internet Browser and the YouTube Player are downloaded and fully functioning.

CRTGAMER wrote:The Wii console a quick convenient Internet browser on the big screen even if displayed on a SD TV. :mrgreen:

Image
Image
CRT vs LCD - Hardware Mods - HDAdvance - Custom Controllers - Game Storage - Wii Gamecube and other Guides:
CRTGAMER Guides in Board Guides Index: http://www.racketboy.com/forum/viewtopic.php?p=1109425#p1109425

Image
Image
User avatar
Ziggy587
Moderator
 
Posts: 14519
Joined: Mon Jun 09, 2008 5:12 pm
Location: NY

Re: Wii Gamecube Guide - Resetting Wii Forgotten Password

by Ziggy587 Thu Apr 21, 2016 2:01 pm

I don't understand the program language, but this part looks like the actual unlock code calculation:

Code: Select all
fullnum = form["date"][0] + form["number"][0][4:8]

crc = CRC32().crc32(fullnum)
code = ((crc ^ 0xaaaa) + 0x14c1) % 100000

return '<div class="response">Your unlock code:<span class="code">%05d</span></div>'%code


You should be able to extrapolate from that how to calculate the unlock code from the the inquiry number and date with just a pen and paper (or perhaps a calculator). Or, looks simple enough that someone could easily write a small app for PC or whatever.
I'm parting with some duplicate Blu-Ray and DVD movies. Check out this thread if interested.
User avatar
CRTGAMER
Next-Gen
 
Posts: 11933
Joined: Tue Jan 05, 2010 11:59 am
Location: Southern California

Wii Gamecube Guide - Emio The Edge NES Classic Adapter Fix

by CRTGAMER Thu Dec 08, 2016 10:46 am

Update! EMIO Factory Shipped Packages come with NES Classic Adapter
See the very bottom of this post for a picture of The Edge Joystick I received with the mystery NES Classic Adapter. I confirmed the add on NES Classic Adapter does indeed change the Dpad function in a very unique way, see the Rayman Origins review below.

ImageImage

CRTGAMER wrote:Japan gets all the good stuff. I am very tempted to buy a Japanese Wii and register my US games to Japan Club Nintendo if it were possible. Come on Nintendo, release that SNES Classic Controller to all regions!

Image

Though I still would like to get a dedicated SNES Classic Controller, the Emio "Advantage" Edge Joystick a nice option.

http://www.8-bitcentral.com/blog/2016Archive.html

Image

Nintendo released the original NES Advantage in 1987 and it gave gamers a distinct "arcade" experience complete with an actual joystick and features like Turbo. Conceptually, bringing back the NES Advantage is a terrific idea, but this time EMiO recreated it for the NES Classic Edition. Being a third party developer, they may not have been privy to the systems exact specs prior to delivering their joystick.

Image

Emio RECALL - The Edge Gamepad / The Edge Joystick
Oh crap, the repackaged Emio Wii Classic Controllers to NES Classic are on OFFICIAL RECALL! Emio may or may not release this getting to be rare and costly controller again. Best Buy lists it as "Out Of Stock - This Item No Longer Available" and immediately processes any returns as Recall. Gamestop as well lists it as "Not Available". A shame, the remake NES Advantage very solid with switches inside for Wii and WiiU 2D games.

Best Buy - http://www.bestbuy.com/site/emio-the-ed ... Id=5655564

Gamestop - http://www.gamestop.com/accessories/edg ... ion/138443


Due to precaution as Toy Safety Recall, a difficult returns repurchase!
I really want one and Ebay prices are crazy either due to the NES Classic hype or the Factory Recall itself. Took the plunge when I saw one listed at of all places Amazon at five bucks over the older MSRP and (currently at the newer MSRP of $29.99) putting it at $33.98 shipped. :mrgreen:

https://www.amazon.com/dp/B01MTRYSSK

A surprise to find the NES Classic Adapter in the box! The stick works beautiful and has a choice of "Robotron" round knob or "Streetfighter" bat handle Arcade Stick toppers. My preliminary check of the controls confirms a very solid hit of the joystick limit switches giving great tactical click feedback. Controller includes Start "+" and Select "-" buttons of the Wiimote. There is a Slow Button which simulates continue tapping of the start button slowing down a game. The two fire buttons feel solid with a clean press. The base is stable and does not have to be held when moving the stick around. Separate turbo fire engage buttons, rapid fire adjust knobs with LED flash indicators. An alternate "Arcade" stick in addition to my Tatsunko or PSX Blaze sticks. 8)

Emio The Edge Button Layout
Classic Controller "-" = Emio Select
Classic Controller "+" = Emio Start
Classic Controller "A" = Emio "A"
Classic Controller "B" = Emio "B"
Classic Controller Dpad = Emio Joystick


Image

Image

Reviewed below are some games I have tested. There are other hidden "NES Advantage" game possibilities. I'll update this post as I try out more various games, get the stick while you can! :idea:

Game Test PERFECT - Rayman Origins
http://www.racketboy.com/forum/viewtopic.php?f=2&t=30455&p=567763#p567763


Image

I bought The Edge Joystick specifically to try on this game which supports a Classic Controller with DPad and needs just the two button capability; matching the NES Advantage. With just the Wiimote, the game defaults to sideways control with Rayman walking. Plugging in the Edge switches the game to Classic Control mode. Interesting that Rayman starts running in place as if the Nunchuck (not plugged in) sprint run mode button is pressed!

CRTGAMER wrote: :arrow: Discovered the Emio NES Classic Adapter does in fact change the sensitivity of the Dpad function of the stick. Without the adapter, Rayman sprint runs and with the adapter Rayman walks! Sideways Wiimote sets only to walk mode. The Nunchuck mode includes a fire button sprint running mode.

Unique Auto Run Auto Walk Control Capability - Only on The Edge Joystick
:idea: I prefer playing Rayman in the automatic sprint run mode with the Advantage Arcade style stick. However, there are levels that require careful timed jumps at tricky platforms. For those levels, I simply plug in the NES Classic Adapter to enable the walk mode of Rayman. The buttons work great, one for jump and one for attack. The Edge also has a combo A B button for quick jump attacks. Enabling the turbo fire buttons with variable range knobs confirmed to work; Rayman will continually jump or attack just by holding the button down. This will come in handy on the later Raman SHMUP levels!

Game Test PERFECT - Blast Works
http://www.racketboy.com/forum/viewtopic.php?f=2&t=30455&p=542817#p542817


Image

A nice customization SHMUP that utilizes the Wii Classic Controller Dpad and two buttons for shooting and shrink items captured. Joystick works perfect as the Dpad. Rapid fire already built in the game so the turbo fire mode is not needed. In playing the game, sometimes tricky switching between shooting and shrinking captured objects. Not a problem, just hold the A B Button to keep items shrunk and fire engaged.

Game Test PERFECT - Data East Arcade Classics

Image

As confirmed, any emulated game that has the Wii Classic Controller Dpad option is compatible with The Edge Joystick. Due to only two buttons, an issue of a Coin and Start buttons for emulated arcade games. Fortunately the Start Button is already set to the Emio Start (Wiimote +) and the coin button can temporarily be set thru each in game pop up menu. I set the fire button to coins, load up the quarters, and pop up the menu to switch the button back to fire.

Data East Magical Drop III and Burgertime both work perfect, the Emio Edge Joystick duplicating the Stick of the original Arcade Cabinets. Another game Heavy Barrel as in the Arcade Cab normally does not have rapid fire for the machine gun. Here is where the turbo fire dial control works perfect in dialing in the quickest auto fire. Instead of continually having to mash the fire button, now can just be held down for a much better game play.

Game Test PARTIAL - SNK Arcade Classics

Image

The Neo Geo games work very well though there are only two buttons on the "NES Advantage". Metal Slug plays great, but a sacrifice of adjusting the two buttons thru the game menu for jump and fire and losing out on the grenades. Game quite playable since Grenades are a limited supply. The Heavy Metal SHMUP game the real surprise, fire can be set to not just auto, but AUTOMATIC fire in the game menu and with the turbo button engaged, nice! No need to hold the fire button in a SHMUP that needs to continuous fire. A mix of games with most that can be made playable; fortunately the buttons can be reconfigured on the fly.

Game Test PARTIAL - Shiren The Wanderer
Image
For a Wii RPG game, a real surprise on the simplified controls! Then again the game is a Dungeon Crawler making it ideal for Dpad control and no camera control required. The Edge Joystick works perfect for the movement. The two buttons of The Edge are great as the primary buttons of action/attack and dash. However, a third button is needed to bring up the in game menu to utilize various items. A temporary swap in of the Nunchuck when one wants to bring up the RPG Menu to change weapons or take a healing potion. A compromise since most of the time will be spent exploring and attacking. I do wish the RPG Menu was assigned as one of the primary buttons since dash is not a high priority.

Game Test OK - Kirby Dream Collection

Image

This collection of retro Nintendo games has interesting results. SNES games had the primary button of jump, but the inhale with shoot does not work with just the two buttons of The Edge; it needs the standard four button support of the original SNES games. However, two button Gameboy and NES as expected work just fine. The real surprise is N64 Kirby Crystal Shards on the Wii disc full compatible due to reversion back to the two button support.

Even better, the new Return To Dream Land Challenge Stages also are two button support, perfect with The Edge Joystick. This is noteworthy since the Return Dreamland separate Wii game does NOT support the Classic Controller! :mrgreen:

Image

Game Test OK - Namco Museum Megamix

Image

The Arcade Cabinet games are perfect since they only require one or two buttons and correctly matched. Unlike the SNK disc there is no reconfiguration of buttons allowed, works out since not needed. Each button is divided correctly so the two button games on The Edge Joystick works and for single button games such as Galaxian both buttons shoot! The remix 3d games require the analog stick; the Edge Joystick movement does not work either with or without the NES Classic Adapter. Plugging in just the adapter alone brings up "Wii Classic Controller detected" in the game. Moving Pacman to each Arcade Cabinet also requires an Analog stick or temporary Nunchuck swapped in, this confirms the Edge Joystick is strictly Dpad control.

Game Test PARTIAL - Super Mario All-Stars 25th Anniversary
http://www.racketboy.com/forum/viewtopic.php?p=1032924#p1032924


Image

Though the emulated NES games use two buttons of the original NES gamepad, the Emio buttons both only duplicate the jump mode of Mario. The spit the fireballs do not work and the game has no button configuration option. This brings up the point for any Dpad Classic Control or Virtual Console games, there should be a button config option to guarantee full compatibility with The Edge Joystick.

Fortunately there is the NES Gamepad Mod option to maintain 100% compatibility for all sideways Wimote games.
http://www.racketboy.com/forum/viewtopic.php?f=2&t=30455&p=605853#p605853

Game Test FAIL - The Munchables
http://www.racketboy.com/forum/viewtopic.php?p=635733#p635733


Image

The rapid fire is needed for the Pacman munch mode. This makes the game so much better to play vs the default of continually mashing the fire button. The Edge supports the munch with rapid fire function. Unfortunately the Classic Controller analog stick is needed for direction movement which kills using The Edge Joystick.

CRTGAMER wrote:For the Munchables game, I can use the Tatsunko Arcade Stick since it has an Analog Stick mode. My PSX Blaze Arcade Stick as well supports the Analog stick with a Mayflash Adapter. Due to Analog only movement control, this confirms The Edge Joystick is definitely only Dpad control support either with or without the NES Classic Adapter plugged in. :!:

Emio Website Product Details - http://www.poweredbyemio.com/home/product/details/EMI022.html

The Edge Joystick - $29.99 MSRP

Turbo functions allow repeated button presses by holding the “Turbo” button. The Turbo knobs control the speed of the buttons, and the ON/OFF buttons activate the turbo function on A and/or B buttons. Joystick is a digital 8-way input with circular gate. Switch between the ball top and bat top joysticks (included). Brings the arcade feel home, and works specially well with games that use 8 directions. A and B are micro switches with higher end and long-lasting material. These buttons are the best choice for any fighting game enthusiast! The Edge Joystick includes “Slow” & “B+A” buttons. “Slow” button gives an edge over a normal controller by making the game go in slow motion. Easily and accurately execute “B+A” moves. Edge Joystick comes with a 9' cable, so you can play your favorite games from almost any spot in your room! You don't have to worry about pulling the cable and disconnecting in the middle of a game.

Image Emio The Edge Review - https://www.youtube.com/watch?v=FNPoyd-6z_M

Image

https://mynintendonews.com/2016/11/16/the-emio-nes-mini-controller-has-been-recalled-for-not-working-with-nes-mini-games/

It has been a rocky launch for the NES Mini, and it seems that trend is continuing with new developments. Lots of Reddit users are having a crisis over the EMiO NES Mini controller. Apparently, the product isn’t working with all NES Mini games. In fact, there’s uncertainty on whether it works for only a few games or works for none of them at all. Wii and Wii U games work fine, but the problem lies with the NES Mini games. Best Buy and Amazon have now removed the controller from their sites, so this isn’t confined to just Reddit. The controller has basically been recalled. Nintendo has not commented on the matter, but if they do, we’ll let you know.

Update: One of the readers contacted the manufacturers and received this email:
“Dear Customers who bought The Edge Joystick (batch #:110116WSJ) and The Edge Gamepad (batch:110116WSP).

Emio wrote:Thank you for contacting us, we know your time is valuable, and we wanted to give you a quick solution for connecting your controller with the NES Classic Console.

The Edge Joystick and The Edge Gamepad are compatible with Wii U and NES Classic Edition game consoles. It was brought to our attention that a few batches shipped, failed to include the NES Classic Console adapter in the box. To make it right with you, we are offering a FREE NES Classic Edition Adapter + a FREE NES Classic Edition Extension Cable + a FREE SURPRISE BONUS GIFT (a $30 Value). This offer only applies to qualifying customers.

To receive your FREE NES Gift Pack:

1. Do not return item to the store.
2. Instead Send an email to Support@PoweredByEmio.com
Include title: “FREE NES GIFT PACK”, Name, address, and send proof of purchase receipt.
3. Wait to receive your product in the mail.
4. If you wish and are satisfied with our service. Please provide 5 Star rating or edit a negative listing with your updated experience. 5 Star ratings mean a lot to us.
5. Thank you!”

The literature in the packaging never mentioned anything about an adapter. So I doubt that some of the units just "shipped without the adapter." It is my opinion that they just shipped the controllers assuming they would work with the NES, but now that they don't they are providing this service. Should be interesting to see how this unfolds.

If you have purchased this, DO NOT SEND THE CONTROLLER BACK! Go ahead and send that Email. Based on a member at Atari Age, the Edge Joystick actually looks decent inside! Appears to have solid click switches for the stick; there is a choice of Ball or Bat Handle to thread on. Looking forward to my early Christmas present! :wink:

http://atariage.com/forums/topic/258901-nes-classic-edition-is-here/#entry3629155

I also got an Edge joystick (for myself) and the first thing I did after I unboxed it was open it up and take a peek under the hood:

Image

Tickle me impressed. Build quality is vastly superior to the NES Advantage, which was naught more than a giant Dpad with a stick on top and oversized mushy buttons with silicone membranes underneath. Inside the Edge contains real snap in 30mm buttons and what appears on first glance to be a Sanwa JLF joystick. I suspect it is a clone joystick because I attempted to lift off the restrictor plate and found it nearly impossible to remove. This is fairly easy to do on a stock JLF. Oh well looks like no circle/octo gate for me then! Regardless, the Edge stick is fully moddable and customizable as the buttons and joystick are literally drop in replacements... :mrgreen:

Grab the controller while you can for use on the Wii. This is difficult to find due to the Recall, stores mandated due to connotations as a "Safety" recall and not just the repackage error. After my Amazon Order went thru, I had also emailed Emio for the free gift which includes the adapter fix for the NES Classic. Turned out I did not need to, my The Edge Joystick came with the NES Classic Adapter! The indication is the newer packages (note difference at the very top) now have a shout box "For NES Classic Edition and WiiU". :idea:

CRTGAMER wrote:Will the Emio Edge Joystick and Gamepad return to retail shelves?
When The Edge Joystick appeared, it was seen only at Best Buy stores in very limited quantities. The Edge Gamepad was only available at Walmart, also in limited quantities. Gamestop has the Edge Joystick as "Not Available" on their website, questionable if any stores ever received any during the initial run. Both Emio controllers were put on store shelves the same day as the launch of NES Classic consoles. A line of people at every location with tickets handed out; everything sold out upon store opening!

Even with the NES Classic Adapter discovered in my recent shipment, questionable if The Edge Joystick will make it back to retail stores due to the Recall Lockout. This is a repeat history of sorts of the NES console trying to break into the store shelves after the game console crash decades ago. The building of the stores trust to carry the recalled product again. Right now stores that list both the Edge Joystick and Edge Gamepad are still locked "Not Available Recall"; maybe due to some might get returned after Christmas?

Time will tell if Emio can get these back in the store shelves, for now get it while you can just in case
I bought my Edge Joystick from a 3rd party seller at Amazon; interesting the package was inside a perfect sized shipping box. Also in the shipping box was a Emio certificate for 10% off the next order, evidence this was bought directly from the Emio store website. Almost if that 3rd party seller has an inside connection for the fixed package? If I ever do get an NES Classic, I'll give that adapter a test. With the issues of some Dpad controlled games on the Wii, maybe still might have problems on the NES Classic? :?:

Image

arcadifvid wrote:i want to know whats in the cheat codes magazine! .... scans pls?

The 64 page booklet inside has all glossy pages, sorry, I won't scan them. It has game play tips, shortcuts and cheat codes for various NES games. Buy the controller with book to keep this product active. The Edge Joystick is really worth getting with the bonus booklet and NES Classic Adapter included. The NES Classic Adapter (arrow) along with choice of threaded controller knobs right in the box! 8)
Attachments
Emio Edge Joystick NES Classic Adapter.jpg
Emio Edge Joystick NES Classic Adapter.jpg (185.66 KiB) Viewed 14032 times
Last edited by CRTGAMER on Fri Dec 01, 2017 11:37 am, edited 50 times in total.
Image
CRT vs LCD - Hardware Mods - HDAdvance - Custom Controllers - Game Storage - Wii Gamecube and other Guides:
CRTGAMER Guides in Board Guides Index: http://www.racketboy.com/forum/viewtopic.php?p=1109425#p1109425

Image
Image
User avatar
samsonlonghair
Next-Gen
 
Posts: 5188
Joined: Tue Feb 17, 2009 2:11 pm
Location: Now: Newport News, VA. Formerly: Richmond. Before that: Near the WV/VA border

Re: Wii Gamecube Guide - Emio The Edge NES Classic Adapter P

by samsonlonghair Thu Dec 08, 2016 12:35 pm

If I understand you correctly, Emio is already selling new stock (or new old stock) of their Edge Joysticks that include an adapter right out of the box. So if Emio is already selling new Edge Joysticks, it's just the old ones that are recalled, right? There's no recall on the newer version that includes the adapter, right? Why would there be? So...I'm not so sure this is going to be terribly rare.

It is still pretty neat, and I am genuinely grateful you are documenting everything that comes in the box. Good job, CRT.
User avatar
CRTGAMER
Next-Gen
 
Posts: 11933
Joined: Tue Jan 05, 2010 11:59 am
Location: Southern California

Wii Gamecube Guide - Emio The Edge as Wii Arcade Stick

by CRTGAMER Mon Dec 12, 2016 9:45 pm

EDIT - Updated Emio Guide above. Kirby Dream Collection has a nice NES Advantage surprise.

samsonlonghair wrote:If I understand you correctly, Emio is already selling new stock (or new old stock) of their Edge Joysticks that include an adapter right out of the box. So if Emio is already selling new Edge Joysticks, it's just the old ones that are recalled, right? There's no recall on the newer version that includes the adapter, right? Why would there be? So...I'm not so sure this is going to be terribly rare.

It is still pretty neat, and I am genuinely grateful you are documenting everything that comes in the box. Good job, CRT.

Thanks, surprised how well the "Remake NES Advantage" is constructed with limit switches inside. The included adapter has fixed (though not completely) the control issues. I updated my reasons on the possible of no new stock in the OP at the bottom.

Really jump on this even if on the fence. Due to reasons posted, this controller might indeed be hard to find!
Image
CRT vs LCD - Hardware Mods - HDAdvance - Custom Controllers - Game Storage - Wii Gamecube and other Guides:
CRTGAMER Guides in Board Guides Index: http://www.racketboy.com/forum/viewtopic.php?p=1109425#p1109425

Image
Image
Tanooki
Next-Gen
 
Posts: 6947
Joined: Sun Jul 06, 2014 5:06 pm

Re: Wii Gamecube Guide - Emio The Edge as Wii Arcade Stick

by Tanooki Tue Dec 20, 2016 1:42 pm

I found an Emio Edge Gamepad today at a Walmart. It had a packing sticker on the box of some sort dated Dec 13. It works just fine on the NES Classic Edition without any problems or need of some adapter device.

Perhaps they fixed their QC problem without the need of a spare part.
User avatar
CRTGAMER
Next-Gen
 
Posts: 11933
Joined: Tue Jan 05, 2010 11:59 am
Location: Southern California

Re: Wii Gamecube Guide - Emio The Edge as Wii Arcade Stick

by CRTGAMER Wed Dec 21, 2016 9:58 am

Thierry Henry wrote:Got this one <Emio The Edge Joystick> mostly due to a member here drooling with enthusiasm over it. :wink: :P

I must say, he was not wrong. The build quality is fantastic.

Image

Managed as well to source one of those "Classic Edition Adapter" for use with the NES mini.

Image

Nice! My NES Classic Adapter that was inside the box is gray. I noticed yours is black; was it included in the box? Curious how it affects the Wii Rayman Origins game compared to my gray version reviewed earlier? Rayman sprints with the stick plugged in; with the adapter he walks.

Tanooki wrote:I found an Emio Edge Gamepad today at a Walmart. It had a packing sticker on the box of some sort dated Dec 13. It works just fine on the NES Classic Edition without any problems or need of some adapter device.

Perhaps they fixed their QC problem without the need of a spare part.

Your Emio Gamepad has to be a version 2. Earlier reviews stated neither the Edge Joystick or Edge Gamepad worked on the NES Classic. Do you also have Wii Rayman Origins? If played with the Emio Gamepad and Rayman walks instead of sprints, a confirm of the version 2 upgrade.

Image
Image
CRT vs LCD - Hardware Mods - HDAdvance - Custom Controllers - Game Storage - Wii Gamecube and other Guides:
CRTGAMER Guides in Board Guides Index: http://www.racketboy.com/forum/viewtopic.php?p=1109425#p1109425

Image
Image
Tanooki
Next-Gen
 
Posts: 6947
Joined: Sun Jul 06, 2014 5:06 pm

Re: Wii Gamecube Guide - Emio The Edge as Wii Arcade Stick

by Tanooki Wed Dec 21, 2016 12:02 pm

Nope I don't have a Wii or WiiU. I don't regret the latter, but some days I still wish I had the Wii a bit. I actually have a dolphinbar for my laptop along with a wiimote and nunchuk I found a few months ago at a goodwill for $4 I use on occasion. I tossed NewSMB Wii and Mario Galaxy 2 on here to try it out.
User avatar
Thierry Henry
Next-Gen
 
Posts: 1200
Joined: Mon May 05, 2008 9:56 am
Location: SA

Re: Wii Gamecube Guide - Emio The Edge as Wii Arcade Stick

by Thierry Henry Fri Dec 30, 2016 11:49 am

CRTGAMER wrote:
Thierry Henry wrote:Got this one <Emio The Edge Joystick> mostly due to a member here drooling with enthusiasm over it. :wink: :P

I must say, he was not wrong. The build quality is fantastic.

Image

Managed as well to source one of those "Classic Edition Adapter" for use with the NES mini.

Image

Nice! My NES Classic Adapter that was inside the box is gray. I noticed yours is black; was it included in the box? Curious how it affects the Wii Rayman Origins game compared to my gray version reviewed earlier? Rayman sprints with the stick plugged in; with the adapter he walks.


Apologies CRTGAMER, I only just now spotted your reply and question to me.

I'm subbed to a few threads and have enabled email notification for those, but for the last couple months it doesn't seem to work. So if I don't see a thread or purposely go looking for it, I'm bound to miss it.

Anyways, yes that black adapter of mine was included in the box. It had its own little plastic baggy with a small leaflet type instruction paper. And yes, Rayman does that sprint of his with the EMiO stick sans adapter. Again, as with yours, with the adapter also plugged in, he walks.
"There are three kinds of suns in Missouri: Sunshines, sunflowers, and sons-of-bitches"
Return to Guides

Who is online

Users browsing this forum: No registered users and 6 guests