Author Topic: Turbo Everdrive IR remote control reset  (Read 399 times)

Vimtoman

  • Sr. Member
  • ****
  • Posts: 380
Turbo Everdrive IR remote control reset
« on: February 25, 2016, 05:12:16 AM »
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.



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


IR sensor pinout


Arduino mini 168 pinout


Finished test item









« Last Edit: February 25, 2016, 05:16:42 AM by Vimtoman »

ginoscope

  • Sr. Member
  • ****
  • Posts: 360
Re: Turbo Everdrive IR remote control reset
« Reply #1 on: February 25, 2016, 05:32:06 AM »
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

  • Full Member
  • ***
  • Posts: 118
Re: Turbo Everdrive IR remote control reset
« Reply #2 on: February 25, 2016, 05:34:59 AM »
This is GREAT!!!

Sent from my SM-N910P using Tapatalk


Necromancer

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 21366
Re: Turbo Everdrive IR remote control reset
« Reply #3 on: February 25, 2016, 06:23:49 AM »
Heh, what a crazy mod.  :lol:
U.S. Collection: 97% complete    155/159 titles

schweaty

  • Hero Member
  • *****
  • Posts: 819
Re: Turbo Everdrive IR remote control reset
« Reply #4 on: February 25, 2016, 06:26:20 AM »
impressive mod.... next step:  a 3D printed ED cover that can house the IR RX'er and board. 

Ergot_Cholera

  • Full Member
  • ***
  • Posts: 169
Re: Turbo Everdrive IR remote control reset
« Reply #5 on: February 25, 2016, 06:27:59 AM »
Your arse.

Vimtoman

  • Sr. Member
  • ****
  • Posts: 380
Re: Turbo Everdrive IR remote control reset
« Reply #6 on: February 25, 2016, 09:10:14 AM »

esteban

  • Hero Member
  • *****
  • Posts: 24063
Re: Turbo Everdrive IR remote control reset
« Reply #7 on: February 25, 2016, 09:14:28 AM »
Amazing.
  |    | 

Dicer

  • Hero Member
  • *****
  • Posts: 1905
Re: Turbo Everdrive IR remote control reset
« Reply #8 on: February 25, 2016, 10:11:12 AM »
Brilliant...

780racer

  • Sr. Member
  • ****
  • Posts: 467
Re: Turbo Everdrive IR remote control reset
« Reply #9 on: February 25, 2016, 10:44:56 PM »
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.

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.
Switchzx's amazing quote -
"I was starting with the hardest to get games first. I realized I was never going to get Magical Chase so gave up on it all, sold up and got out."


Blueraven's quote - "it begins."

http://www.pcedaisakusen.net/2/34/695/show-collection.html


garyriet

  • Newbie
  • *
  • Posts: 11
Re: Turbo Everdrive IR remote control reset
« Reply #10 on: February 26, 2016, 02:19:26 AM »
Damn you are lazier then me


Sent from my iPhone using Tapatalk

technozombie

  • Hero Member
  • *****
  • Posts: 730

testinator

  • Newbie
  • *
  • Posts: 4
Re: Turbo Everdrive IR remote control reset
« Reply #12 on: March 22, 2016, 01:49:12 PM »
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

  • Sr. Member
  • ****
  • Posts: 380
Re: Turbo Everdrive IR remote control reset
« Reply #13 on: March 23, 2016, 11:54:23 AM »
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.