Use ~10€ to connect modern mouse to MSX

Page 12/19
5 | 6 | 7 | 8 | 9 | 10 | 11 | | 13 | 14 | 15 | 16 | 17

By luppie

Paladin (869)

luppie's picture

15-05-2014, 13:46

NYYRIKKI wrote:

Hmm... Newer thought about left handed people... Should I add possibility to swap left / right button for next release?

Maybe it's an option, to use pin D2 + GND (they are next to each other on a Nano Board)
Solder a 2 pin header onto it, so it can be used as a jumper.

pinMode(2,INPUT_PULLUP);
int LeftRightJumper= digitalRead(2);

  if (LeftRightJumper == HIGH) {
    //Dont Swap Buttons;
  } 
  else {
    //Swap the Buttons;
  }
}

This way it is possible to use a jumper to permanent switch to a left-hand mouse.
With the jumper in a open position (default), a right hand mouse is selected.

By NYYRIKKI

Enlighted (6067)

NYYRIKKI's picture

15-05-2014, 14:21

I think it is better to use mouse buttons for configuration + EPROM to store the settings... I don't like jumpers that much.

By Prodatron

Paragon (1843)

Prodatron's picture

15-05-2014, 16:57

At least in SymbOS you can swap left/right mouse buttons (Control Panel -> Mouse) Hannibal

By luppie

Paladin (869)

luppie's picture

31-05-2014, 09:53

With the help of NYYRIKKI, I managed to build this nice mouse adapter. Here's an impression of how it looks Big smile

The mini-USB socket in the first picture is used to update the firmware/software inside the adapter.

By NYYRIKKI

Enlighted (6067)

NYYRIKKI's picture

06-06-2014, 10:20

By edoz

Prophet (2482)

edoz's picture

06-06-2014, 10:32

haha .. how cool! this game console Big smile What is inside ?

By NYYRIKKI

Enlighted (6067)

NYYRIKKI's picture

06-06-2014, 10:37

Yet another Arduino Nano + 2x resistor

By edoz

Prophet (2482)

edoz's picture

06-06-2014, 12:30

A nano that supports display ?

By luppie

Paladin (869)

luppie's picture

06-06-2014, 13:09

Yep, using the TVout library

By NYYRIKKI

Enlighted (6067)

NYYRIKKI's picture

06-06-2014, 15:16

edoz wrote:

A nano that supports display ?

"Supports" is maybe a bit wrong word, but yes... Arduino can be hacked to output videosignal same way as MSX keyclick can be hacked to play samples.

Page 12/19
5 | 6 | 7 | 8 | 9 | 10 | 11 | | 13 | 14 | 15 | 16 | 17