![Rolling Eyes :roll:](./images/smilies/icon_rolleyes.gif)
![Smile :)](./images/smilies/icon_e_smile.gif)
![Very Happy :D](./images/smilies/icon_e_biggrin.gif)
Also, was seeedstudio able to cut the board shape out as well? Or did you have to do that in post?
Yes! They traced the board outline very well. I'm very pleased with the PCBs. The only issue was my silly mistake with D6/D7 putting a switch on the Teensy LED, which I fixed by removing the tiny resistor in series with the LED. I've just not to press the key while in bootloader mode. My next revision of the board will swap D6/D7 to remove this hack.bearcat wrote:So did Seeedstudios route the pcbs as well?
Code: Select all
F00000 - Top Row
F00000 - Home Row
T000 - 3rd Row
T000 - Bottom Row
Code: Select all
K5_00010, KEY_I, KEY_9, // [I]
K5_00000, KEY_9, 0, // Mode 1
K3__000_, KEY_PAGE_DOWN, 0, // Mode 2
K3__000_, 0, 0, // Mode 3
0, 0, 0, // Mode 4
That's what I was thinking. It's harder typing on the keyboard using the same codes for left/right than with a mirrored arrangement. I've found that I don't need as many modes for the keyboard as I was expecting, and therefore Mode 4 can be used to select the mirrored keys...Muirium wrote:The symmetry of your design ought to make lefty use pretty easy. I'd just flip the logical layout and watch human symmetry at work! A key combo to mirror the layout would be advantageous when swapping hands.
Hi Muirium,Muirium wrote:Auto brackets? Cunning. I forgot to add those to my macros in Soarer's Converter!
The one customisation I can be sure I'll need (thanks for the PCB) is to swap Control for Command. This can be done in software on the Mac, but I'm going to try this portable keyboard on the iPad, where it can't. Command is just the Mac's equivalent of the Windows key, USB HID code-wise. But in practice it's more like Control for text navigation and a menu shortcut modifier key merged into one. Apple mods are very much Command and Option (Alt) first, with Control in a distant third.
Indeed. The sheer amount of state that chords can occupy is proof of quite how inefficient standard keyboards are in converting movement into output.PJE wrote:Doing these finger rolls speeds up common pairs, and allows more characters to be typed on the primary keys at a slight reduction of ease of learning. The aim is to produce the most fluid one handed typing possible without distracting stretches between keys, as the rolled combination can generate any combination of letters.
Exactly. I had all manner of layer remaps and macros in mind for my (then still to be built) custom keyboard. But actually using the working hardware led me to immediately alter almost everything! Some things have to be chosen by your fingers, not your head.PJE wrote:I'm really enjoying being able to experiment on the unit.