Author Topic: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.  (Read 21561 times)

0 Members and 1 Guest are viewing this topic.

Offline JPG

  • Posts: 1124
  • Location: Canada (Beloeil, near Montreal)
  • Model F is my new passion!
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #50 on: Wed, 19 December 2012, 12:59:47 »
This thing looks so nice.

BTW, will the screws stick outside from the case or end "flush" on the surface?

Anyway, best of luck with this project!
IBM F122, IBM XT F X2, IBM AT F (all Soarer converted), Filco Camo TKL Browns

Offline Salisen

  • Thread Starter
  • Posts: 61
  • Location: United Kingdom
  • "Fire and Blood."
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #51 on: Wed, 19 December 2012, 14:54:20 »
This thing looks so nice.

BTW, will the screws stick outside from the case or end "flush" on the surface?

Anyway, best of luck with this project!

Flush would be ideal.  It could probably be done pretty easily as long as thicker alu is used than 1.5mm.
| QPAD MK-80 |

Offline Salisen

  • Thread Starter
  • Posts: 61
  • Location: United Kingdom
  • "Fire and Blood."
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #52 on: Thu, 20 December 2012, 23:40:57 »
I believe I've now selected a small size microcontroller to replace the teensy on the numpad, while still keeping both numpad and TKL keyboard the same length.

Namely, this microcontroller:

The AT90USB162.  Specifically with part number AT90USB162-16AUR and description IC AVR MCU 16K FLASH 32TQFP.

32TQFP is SMD, but it should be okay to solder by hand without too much trouble (I hope...).

I think it'll be possible to port the phantom firmware for the teensy without too much trouble.  It's just a smaller cousin of the controller used on the Teensy2.0++ (very similar part number, Teensy2.0++ uses the AT90USB1286.  Numpad only needs about 10 IO pins max, so the 21 IO pins max provided by this thing should be fine.  With any luck it'll be mostly a case of changing pin definitions or something (and defining the numpad layout).

Time to acquire free samples from Atmel (the perks of being a student!), and give it a whirl on a breadboard (guess I'm gonna need to get an adapter for it too).

Seriously though.  Free samples of electronics parts are awesome.  If this gets produced en-mass and any of you are students, abuse it.  Actually just abuse it anyway.  Free electronics bits are awesome (particularly when they get sent express delivery...).
| QPAD MK-80 |

Offline SmallFry

  • ** Moderator Emeritus
  • Posts: 3887
  • Location: Wisconsin, USA
  • Leaving 6/15; returning 6/22 or so.
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #53 on: Fri, 21 December 2012, 08:10:13 »
So, this means that you're focusing on the number pad right now? If so, I might pick up on your case since the Phantom is coming soon...

Offline Acetrak

  • ssk.ℜ
  • Posts: 1079
  • Location: West
  • gnawm_
[DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #54 on: Fri, 21 December 2012, 14:52:53 »
Do it SmallFry :D

Offline Salisen

  • Thread Starter
  • Posts: 61
  • Location: United Kingdom
  • "Fire and Blood."
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #55 on: Fri, 21 December 2012, 17:06:34 »
So, this means that you're focusing on the number pad right now? If so, I might pick up on your case since the Phantom is coming soon...

Go for it!  :)

I've got quite a bit of programming to do at the moment anyhow.  I have an assignment over Christmas to code a simulation of the zombie apocalypse.  :)
| QPAD MK-80 |

Offline nebo

  • Posts: 417
  • Location: Seattle, WA
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #56 on: Fri, 21 December 2012, 17:16:31 »
So, this means that you're focusing on the number pad right now? If so, I might pick up on your case since the Phantom is coming soon...

Go for it!  :)

I've got quite a bit of programming to do at the moment anyhow.  I have an assignment over Christmas to code a simulation of the zombie apocalypse.  :)
Code: [Select]
#include <stdio.h>

int main main()
{
    int humPop = 1000000;
    int zombPop = 1;

    while(zombPop > 0) {

        printf("Still ****ed.\n");

        if (rand() % 0 + 1 == 1) {
            /* someone died, prob 1/2 */
            zombPop++;
            humPop--;
        }

        if (rand() % 10 + 1 == 5) {
            /* zombie died, prob 1/10 */
            zombPop--;
        }
    }
}



Now back to work with you!

Offline Leewei

  • Posts: 288
  • Location: United States
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #57 on: Fri, 21 December 2012, 23:53:42 »
Keep up the good work guys! I can't wait to see this project go through!
Filco Majestouch 2 Beige TKL with MX Reds
Qsenn dt-35

Offline NikoGasm

  • Posts: 263
  • Location: California
  • Platinum mad.
    • Twitch
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #58 on: Sat, 22 December 2012, 00:01:40 »
I really like this case, it'd be perfect for a Phantom. :D
| MX Mini | Ducky DK1087 | A87 |

Offline SmallFry

  • ** Moderator Emeritus
  • Posts: 3887
  • Location: Wisconsin, USA
  • Leaving 6/15; returning 6/22 or so.
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #59 on: Sun, 23 December 2012, 15:21:07 »
Guess it isn't going to work... I have SolidWorks 2011 on my father's work laptop, and you seem to be working in a future version Salisen. Crap.

Offline Salisen

  • Thread Starter
  • Posts: 61
  • Location: United Kingdom
  • "Fire and Blood."
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #60 on: Sun, 23 December 2012, 15:44:26 »
Guess it isn't going to work... I have SolidWorks 2011 on my father's work laptop, and you seem to be working in a future version Salisen. Crap.

That's odd.  What files were you after?  I might be able to output in an older format.  :)
| QPAD MK-80 |

Offline Salisen

  • Thread Starter
  • Posts: 61
  • Location: United Kingdom
  • "Fire and Blood."
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #61 on: Sun, 23 December 2012, 15:48:28 »
Guess it isn't going to work... I have SolidWorks 2011 on my father's work laptop, and you seem to be working in a future version Salisen. Crap.

That's odd.  What files were you after?  I might be able to output in an older format.  :)

Damn.  I can't output anything other than 2012.  >_<
| QPAD MK-80 |

Offline SmallFry

  • ** Moderator Emeritus
  • Posts: 3887
  • Location: Wisconsin, USA
  • Leaving 6/15; returning 6/22 or so.
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #62 on: Sun, 23 December 2012, 15:49:56 »
Stupid Solidworks... erg. I'll have to see if my dad will get 2012 after the holidays.

Offline Salisen

  • Thread Starter
  • Posts: 61
  • Location: United Kingdom
  • "Fire and Blood."
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #63 on: Sun, 23 December 2012, 16:14:04 »
Stupid Solidworks... erg. I'll have to see if my dad will get 2012 after the holidays.

Actually, I think the guy at the Physics workshop I used got the files to load.  He was using an older version too.

They wouldn't load directly from the previews in folders.

He went into the program and opened the files from within, and they worked then.  :)
| QPAD MK-80 |

Offline SmallFry

  • ** Moderator Emeritus
  • Posts: 3887
  • Location: Wisconsin, USA
  • Leaving 6/15; returning 6/22 or so.
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #64 on: Sun, 23 December 2012, 16:29:11 »
I can't get it to work...

Offline Salisen

  • Thread Starter
  • Posts: 61
  • Location: United Kingdom
  • "Fire and Blood."
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #65 on: Sun, 23 December 2012, 16:36:34 »
I can't get it to work...
Show Image


Noooooo!
| QPAD MK-80 |

Offline SmallFry

  • ** Moderator Emeritus
  • Posts: 3887
  • Location: Wisconsin, USA
  • Leaving 6/15; returning 6/22 or so.
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #66 on: Sun, 23 December 2012, 23:12:43 »
I know... Pissed me off something terrible.

Offline Salisen

  • Thread Starter
  • Posts: 61
  • Location: United Kingdom
  • "Fire and Blood."
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #67 on: Sun, 06 January 2013, 10:51:40 »
I just want to note that I've been gone for a while due to the dreaded phenomenon of Real Life.

I will be back!  I just have quite a lot of University Work to do this week.
| QPAD MK-80 |

Offline nebo

  • Posts: 417
  • Location: Seattle, WA
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #68 on: Fri, 11 January 2013, 15:41:05 »
Psh, school work. Like school is important for anything when casing needs to be made! Any plans to allow for the extra 5 keys in the control panel section?

Offline inteli722

  • Posts: 858
  • Location: America
  • Waiting for too much stuff...
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #69 on: Fri, 01 February 2013, 14:01:49 »
This is very cool! This would be VERY interesting to me, especially for a numpad-compatible Phantom layout.
More

Visit the Typing Test and try!
R.I.P. SmallFry! You will be dearly missed.
Leopold FC200 |  CoolerMaster QFP Browns | Quickfire Rapid Greens | Quickfire Rapid Blues
Waiting for: Phantom Plate

Offline Kempher

  • Posts: 85
  • Location: Mary Esther, FL
Re: [DIY project] Alu and acrylic cased TKL keyboard and seperate numpad.
« Reply #70 on: Mon, 25 February 2013, 00:34:18 »
Going to watch this for updates, i'm really interested in a Filco version =).
SQ-1800 /w Gateron Blacks