2/13/2025: Localization News - Cosmic Fantasy 3-4!

Rather earth-shattering news in the PC Engine / TurboGrafx-16 community: Cosmic Fantasy 3 & 4 has been officially localized to English by Edia 30 years later for the Switch! Hard to believe! I know their script quality is poor given the 1&2 port but still good to see.
nintendo.com/us/store/products/cosmic-fantasy-collection2-switch/
Main Menu

Turbo Everdrive IR remote control reset

Started by Vimtoman, 02/25/2016, 01:12 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Vimtoman

I found that getting up off my arse every time I wanted to change a game on the Turbo Everdrive was in need of a solution.
Nope not a extra long stick but an IR remote controlled reset.

I bought one of these remotes online really cheap.

IMG

I programmed it using the routines from this web site.

https://arduino-info.wikispaces.com/IR-RemoteControl

Modiying it in two sections. I had kept all the other sections of code for testing on serial.

void setup()   /*----( SETUP: RUNS ONCE )----*/
{
  Serial.begin(9600);
  Serial.println("IR Receiver Raw Data + Button Decode Test");
  irrecv.enableIRIn(); // Start the receiver
  pinMode(2,OUTPUT);
  digitalWrite(2,HIGH);
}/*--(end setup )---*/

and changed the case routine on several buttons.
Only one shown below.
This adds a 600ms pulse to reset the Everdrive.

case 0xFF22DD: 
    digitalWrite(2,LOW);
    Serial.println(" PREV           ");
    delay(600);
     digitalWrite(2,HIGH);
    break;

Wire the IR sensor to the Arduino Mini and Turbo Everdrive using the colour coded diagrams below.

Turbo everdrive pinout
IMG

IR sensor pinout
IMG

Arduino mini 168 pinout
IMG

Finished test item
IMG

ginoscope

LOL that is an epic mod thanks for sharing.

You are not alone I have been annoyed as well thinking of having to get up and push the reset button.

unclebugspayton


Nazi NecroPhile

Ultimate Forum Bully/Thief/Saboteur/Clone Warrior! BURN IN HELL NECROPHUCK!!!

schweaty

impressive mod.... next step:  a 3D printed ED cover that can house the IR RX'er and board.

Ergot_Cholera


Vimtoman


esteban

IMGIMG IMG  |  IMG  |  IMG IMG

Dicer


780racer

Quote from: Vimtoman on 02/25/2016, 01:12 PMI found that getting up off my arse every time I wanted to change a game on the Turbo Everdrive was in need of a solution.
I generally are only be 2 feet from the system it seems. I don't use a cable extender... So I am impressed its far enough to generate that level of work to fix a problem I can see happening, haha.

But its pretty awesome either way.

garyriet



testinator

Very cool. Is there a way to trigger reset over the USB debug port?

Or maybe documentation on what features it has for development?

Vimtoman

This literally just senses the IR sensor but being an Arduino you could program it to just listen to the RX of the USB port. What is sent via the debug usb port for a reset is something that Elmer or yourself if your programming the Everdrive could a give an answer to.