Search found 63 matches

by alfa147x
28 May 2013, 16:12
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Got all the parts in. Everything was coming together till I realized I didn't order a connector for the ribbon cable. So close to getting this all put together!
by alfa147x
22 May 2013, 22:14
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Ordered a ribbon cable from Mouser which according to it's data sheet and my digital caliper is the right size except it has two extra pins. I can then use it to breadboard and then I'll be able to solder it to the perf or stripboard (Can't decide which to go with). Which also will make it a lot ...
by alfa147x
22 May 2013, 01:25
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Not bad. OS X is seeing it as a US layout Apple USB keyboard. The old style pre-aluminium one by the look of it. The help button is the give away, top left of the home / end etc. block.

Option is the culprit for all those crazy symbols.


I kinda figured out the problems. I don't have the LEDs ...
by alfa147x
22 May 2013, 01:11
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Image

That's what happens when I plug it in. Working on that currently
by alfa147x
22 May 2013, 00:41
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Updated all the code and moved over to the new version of the keymap.c layout. Oh and updated CrossPack to the latest version.

I still get this.
keymap.c:95:70: error: macro "KEYMAP" requires 67 arguments, but only 65 given
keymap.c:91:5: error: 'KEYMAP' undeclared here (not in a function)
make ...
by alfa147x
21 May 2013, 17:06
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

if you want to use git they provide quite nice tutorials on how to use it.

https://help.github.com/categories/31/articles
these are some articles on how to use GitHub for Mac

basicly you want to fork tmk's repository, clone it to your computer, make a branch for your new keyboard project and when ...
by alfa147x
21 May 2013, 14:32
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

concerning the prog_char it looks like it's already a known error: https://github.com/tmk/tmk_keyboard/issues/34
Sweet. Downgraded and it's no longer giving me that issue.

tmk already released a possible fix (an hour after you posted?). if you have the time you could check if the problem is ...
by alfa147x
21 May 2013, 03:13
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

concerning the prog_char it looks like it's already a known error: https://github.com/tmk/tmk_keyboard/issues/34
Sweet. Downgraded and it's no longer giving me that issue.
Oh, just that it's 50:50 whether you use matrix poitions as the names, as you have, or physical positions as names, as the ...
by alfa147x
20 May 2013, 22:18
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Oh, I see, you've done it that way round :D

If left is K5A, shouldn't "K59, K16, K55" be "K59, K5A, K55" ?

You look about close enough now to compile it and then fix bugs as you find them!

What was the alternative route? And wow thanks for finding that! I was watching The Office's finale while ...
by alfa147x
20 May 2013, 04:54
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026


/*
* Layout: 68key
* ,-----------------------------------------------------------.
* |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| ` | BS|
* |-----------------------------------------------------------|
* |Tab | Q| W| E| R| T| Y| U| I| O| P ...
by alfa147x
19 May 2013, 09:08
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Thank Soarer I've read your reply but got caught up doing other stuff. I'm going tackle the project again tomorrow.
by alfa147x
19 May 2013, 02:15
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Yeah I was just looking at that. About to tackle it now. Wish me luck :D

Edit:
Is there a list of those codes?

Edit found it:
https://github.com/tmk/tmk_keyboard/blo ... /keymap.md

Edit:
Hmmm That doesn't match up to what keymap.c has in it. :?

Any ideas?
by alfa147x
19 May 2013, 01:31
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Thanks for the help. This is starting to make more sense. Now I'm laying out the keymap.c

This is what I have planned for now:
static const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* 0: Qwerty
* ,-----------------------------------------------------------------.
* |Esc| 1| 2| 3 ...
by alfa147x
18 May 2013, 23:56
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Wow. Thanks for the help. I was just about to tackle that portion. How does this look?
/* Column pin configuration
* col: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
* pin: F7 F0 F1 D3 F4 F5 F6 F7 F0 D1 D2 F6 F0 D2 C6
*/
static void unselect_cols(void)
{
// Hi-Z(DDR:0, PORT:0) to unselect
DDRC ...
by alfa147x
18 May 2013, 20:48
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Hmm, how much do you know about C's bitwise operators? &, |, ~, << etc.

Looks like you got the relationship between logical bits and physical pins OK.

I know how to read a wiki page:
http://en.wikipedia.org/wiki/Bitwise_operations_in_C

That code was right from the TMK_Keybaord examples. I'm ...
by alfa147x
18 May 2013, 03:53
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Each port on the AVR consist of (up to) 8 pins and is controlled by three registers...

DDRx - Direction - each bit sets whether the corresponding pin is input (=0) or output (=1).
PORTx - For an output pin, the output state. For an input pin, setting a bit to 1 activates the pullup resistor for ...
by alfa147x
18 May 2013, 03:05
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Code: Select all

static void init_rows(void)
{
    // Input with pull-up(DDR:0, PORT:1)
    DDRB  &= ~0b00111111;
    PORTB |= 0b00111111;
}
Any idea how I am suppose interpret this?
by alfa147x
18 May 2013, 02:11
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

ignore
by alfa147x
18 May 2013, 02:11
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

alfa147x wrote:
alfa147x wrote:How does this look?

Old layout

Older layout

Image
See any problems?

Fixed. Thanks!
by alfa147x
18 May 2013, 02:11
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

ignore
by alfa147x
18 May 2013, 02:07
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Got a link to the code you're looking at?
tmk_keyboard

Just the different keyboard packages that ship with the code.

I was thinking I would map the pins to the code. Then map the keys to rows and columns. Is that right? Am I thinking of the logic wrong?

I think I found it. It's set matrix.c ...
by alfa147x
18 May 2013, 01:53
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Okay. I have no idea what I'm doing with the code.

Question 1: How do I tell the code which pin which column and row is hooked to?
by alfa147x
18 May 2013, 00:39
Forum: Workshop
Topic: How to open up a Filco Majestouch Minila. (Cleanly!)
Replies: 2
Views: 3486

Amazing what doors the right plastic will open up. I believe the official tool for that kind of thing is a spudger. I've one of those for laptop repair. And a filed thin putty knife for doing the same means of entry to Mac mini's.

I think I found Deskthority through Google, originally. So ...
by alfa147x
18 May 2013, 00:35
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

How does this look?

Old layout

Image
See any problems?
by alfa147x
17 May 2013, 23:04
Forum: Workshop
Topic: How to open up a Filco Majestouch Minila. (Cleanly!)
Replies: 2
Views: 3486

How to open up a Filco Majestouch Minila. (Cleanly!)

I wrapped the guide in the spoiler tag to help clean up the page. Hit Show to check it out!

Remove two screws near the rear two rubber pads on the bottom.
Insert card like so:

http://i.imgur.com/0jkUmTS.jpg
Rotate card:

http://i.imgur.com/D5M1B7F.jpg
Repeat for all corners:

You may ...
by alfa147x
17 May 2013, 20:37
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Got the bread board out. Getting ready to test this thing out today. After getting the Teensy time seemed to move slower BUT I have finally found time to get this thing on the road!
by alfa147x
16 May 2013, 21:33
Forum: Workshop
Topic: Host Computer's Awareness of Layer Keys
Replies: 13
Views: 6559

Thanks hasu. I'm thinking I may go the way everyone else does and forget all about a computer visible Fn. It's a key with particular appeal on 60% keyboards, but I think it would be easier to work around it in my design than to emulate Apple's own identity. 5 vs. 6 KRO included.

I use the key ...
by alfa147x
14 May 2013, 03:32
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

My Teensy just came in. It's tiny! Wow. Not what I was expecting. Won't be able to breadboard till later this week.
by alfa147x
13 May 2013, 20:48
Forum: Workshop
Topic: Host Computer's Awareness of Layer Keys
Replies: 13
Views: 6559

Muirium wrote:Ne0phyte reports the HHKB conceals its function key state from the host. It's used entirely within the keyboard's own logic. Quite the opposite of Apple's.
I feel like most boards do that. I'll have to try my MiniLa and see if it does or doesn't.
by alfa147x
13 May 2013, 20:34
Forum: Workshop
Topic: Filco MiniLa + Teensy
Replies: 145
Views: 46026

Yes, I've always wondered why any USB keyboards don't have hubs. It's the perfect place to plug in a memory reader etc. at random, let alone a mouse.

I got one of these little solar powered hubs recently. (For use with iPad and camera connector kit.) A powered hub may be overkill, but keyboards ...

Go to advanced search