Search found 40 matches

by wayland
Sun May 07, 2023 1:26 am
Forum: For Sale
Topic: Dragon/Coco keyboard to USB for XRoar (PCB)
Replies: 0
Views: 66053

Dragon/Coco keyboard to USB for XRoar (PCB)

I have some of the PCBs that plug into the Dragon keyboard connector that accept a PI Pico. Requires a 16 pin connector, a Pico and a Micro USB cable. Or I could build it up as a finished board. Contact me if you're interested in the bare PCB or the completed board with the Pico and connector solder...
by wayland
Sun May 07, 2023 1:20 am
Forum: Dragon Hardware
Topic: Dragon 32 with DRAM removed, video output?
Replies: 15
Views: 22293

Re: Dragon 32 with DRAM removed, video output?

It will only be a very tiny fire :lol: It's for debugging purposes. I have about 15 laptop PSUs, it would have been really good if the 12v line had a buck converter too then it would handle 19v. That's the biggest risk that I see, that someone will plug in a laptop PSU and ruin a good Dragon. I've g...
by wayland
Mon May 01, 2023 4:10 pm
Forum: Dragon Hardware
Topic: XRoar "Enjoy Defender on the CoCo 3" Pico project
Replies: 2
Views: 62427

XRoar "Enjoy Defender on the CoCo 3" Pico project

Well I have been running Glen Hewlett's emulation of the original Williams Defender game using the original ROMs in XRoar CoCo3. It's fantastic! https://www.youtube.com/watch?v=jLdAvNj8HNI https://github.com/nowhereman999/Defender_CoCo3 As a hard core Defender fanatic for over 40 years my skills hav...
by wayland
Mon May 01, 2023 3:34 pm
Forum: Dragon Hardware
Topic: Dragon Joystick button upgrade
Replies: 0
Views: 65487

Dragon Joystick button upgrade

I was playing Astroblast and pile driving a hole in my thumb from the tiny button so I decided I needed a bigger button. This is the result; http://www.gadgetmax.co.uk/dragon/joystick/P1080068.JPG http://www.gadgetmax.co.uk/dragon/joystick/P1080068.JPG I took out this little chap; http://www.gadgetm...
by wayland
Wed Apr 26, 2023 12:00 am
Forum: Dragon Hardware
Topic: Dragon keyboard conversion to USB HID (XRoar)
Replies: 23
Views: 56700

Re: Dragon keyboard conversion to USB HID (XRoar)

I have some of the PCBs that plug into the Dragon keyboard connector that accept a PI Pico. Requires a 16 pin connector, a Pico and a Micro USB cable.
by wayland
Tue Apr 18, 2023 6:42 pm
Forum: Dragon Hardware
Topic: Dragon keyboard conversion to USB HID (XRoar)
Replies: 23
Views: 56700

Re: Dragon keyboard conversion to USB HID

Final code; # Dragon 32 Keyboard to USB Keyboard suitable for XRoar with translate OFF # Wayland # # Uses KMK Librarys for PI Pico. # Uses Lee Smith's C64 PCB layout https://github.com/midicdj1000/RETRO-PICO-KMK-Keyboards # # The symbol keys do not actually return what's printed on them except in XR...
by wayland
Tue Apr 18, 2023 5:55 pm
Forum: Dragon Hardware
Topic: Dragon keyboard conversion to USB HID (XRoar)
Replies: 23
Views: 56700

Re: Dragon keyboard conversion to USB HID

OK some progress with XRoar and the @ key problem. I've replaced KC.AT with KC.QUOT in the Python and added kbd-bind 'apostrophe'='at' to the xroar.conf file It works fine with XRoar because XRoar is doing that one little translation. It't not really true to Dragon hardware but the purpose of this i...
by wayland
Tue Apr 18, 2023 4:25 pm
Forum: Dragon Hardware
Topic: Dragon keyboard conversion to USB HID (XRoar)
Replies: 23
Views: 56700

Re: Dragon keyboard conversion to USB HID

Yes, I've been keeping XRoar translation off and that means the ( and ) are above 8 and 9 as per the Dragon. Typing into a text editor shows the same keys as XRoar and @ comes up as " just the same. I did have it doing @ by setting the Pico code to " for the AT key but that only worked in the text e...
by wayland
Sun Apr 16, 2023 8:51 pm
Forum: Dragon Hardware
Topic: Dragon keyboard conversion to USB HID (XRoar)
Replies: 23
Views: 56700

Re: Dragon keyboard conversion to USB HID

# Dragon 32 Keyboard to USB Keyboard # 2023/04/15 Mostly working. Problems with some symbols, £ @ * = # 2023/04/16 Works with XRoar. Everything except @ which comes out as " import board from kmk.kmk_keyboard import KMKKeyboard from kmk.keys import KC from kmk.scanners import DiodeOrientation from ...
by wayland
Sat Apr 15, 2023 9:10 pm
Forum: Dragon Hardware
Topic: Dragon keyboard conversion to USB HID (XRoar)
Replies: 23
Views: 56700

Re: Dragon keyboard conversion to USB HID

# Dragon 32 Keyboard to USB Keyboard # 2023/04/15 Mostly working. Problems with some symbols, £ @ * = import board from kmk.kmk_keyboard import KMKKeyboard from kmk.keys import KC from kmk.scanners import DiodeOrientation from kmk.modules.layers import Layers print("Starting") keyboard = KMKKeyboar...