Search found 46 matches
- 14 Mar 2015, 17:24
- Forum: Workshop
- Topic: IMB trackpoint stem DIY
- Replies: 22
- Views: 7650
I'm currently of building an Atreus with a trackpoint and I extended the stem by drilling a hole and putting a nail into it. resized-IMG_0397.jpg The cap even fits the head of the nail exactly. resized-IMG_0398.jpg Now I'm thinking about where to put the mouse buttons… you nailed it 8-) ! (sorry I ...
- 04 Mar 2015, 21:36
- Forum: Workshop
- Topic: IMB trackpoint stem DIY
- Replies: 22
- Views: 7650
In case you don't know, you can salvage trackpoints with long stems from a certain buckling rubber sleeve IBM board, the IBM Space Saver 2. I'd probably still prefer an extension like this on a newer model, though. I forgot to mention that I looked at those keyboard from ebay and they were a lot mo...
- 04 Mar 2015, 21:30
- Forum: Workshop
- Topic: IMB trackpoint stem DIY
- Replies: 22
- Views: 7650
- 04 Mar 2015, 18:48
- Forum: Workshop
- Topic: IMB trackpoint stem DIY
- Replies: 22
- Views: 7650
- 04 Mar 2015, 16:35
- Forum: Workshop
- Topic: IMB trackpoint stem DIY
- Replies: 22
- Views: 7650
- 04 Mar 2015, 16:08
- Forum: Workshop
- Topic: IMB trackpoint stem DIY
- Replies: 22
- Views: 7650
if you don't laugh I'll show you what I was putting together https://imgur.com/oJk2odx the base is squared and fight tightly the trackpoint plastic part.
- 04 Mar 2015, 15:42
- Forum: Workshop
- Topic: IMB trackpoint stem DIY
- Replies: 22
- Views: 7650
IMB trackpoint stem DIY
I'm searching a way to make a stem for recovered ibm trackpoints that we put on custom keyboards, I was trying to put glue some plastic and add a metallic stem that a pen contained (surely a really diy method, and horrible), the trackpoint is this one https://imgur.com/a/ih2L5 and is 3x3x2.5mm . Do ...
- 03 Mar 2015, 21:08
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389697
seankeyboard wrote: ↑Code: Select all
[2] = ACTION_LAYER_TAP_KEY(3, FN20), // i have also tried typing it out [20] = ACTION_MACRO(CTRLV)
are you sure it compiles correctly?
that quoted code should be, probably:
Code: Select all
[2] = ACTION_LAYER_TAP_KEY(3, KC_FN20),
[20] = ACTION_MACRO(CTRLV)
- 02 Mar 2015, 22:38
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389697
you are welcome.seankeyboard wrote: ↑ Thanks for the help, I still dont know why it isnt released though.
- 02 Mar 2015, 22:30
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389697
Yes wait is measured in milliseconds, see common/action_macro.h.seankeyboard wrote: ↑ I just read it, on your example how come V isnt released, also is "wait" measured in milliseconds
I don't want to appear rude but you should really read the doc again because you are asking things that are already answered there.
- 02 Mar 2015, 22:17
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389697
what is after the D, T, and U if I wanted to make a 3 key macro what would that look like have you read the documentation I pointed out? 2.3 Macro action ***TBD*** `Macro` action indicates complex key strokes. MACRO(MACRO( D(LSHIFT), D(D), END ) U(D), U(LSHIFT), END ) MACRO( I(255), T(H), T(E), T(L...
- 02 Mar 2015, 22:12
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389697
Could you explain this part for me please. const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { switch (id) { case CTRLV: return (record->event.pressed ? MACRO( D(LCTRL), T(V), U(LCTRL), END ) : MACRO_NONE ); } } what you don't understand? also read doc/keymap.md section ...
- 02 Mar 2015, 17:18
- Forum: Workshop
- Topic: How to build your very own keyboard firmware
- Replies: 711
- Views: 389697
for creating a macro that "clicks" ctrl+v, put a FN to a key, like FN1 and add to your fn_actions[] array a call to [1] = ACTION_MACRO(CTRLV), // CTRL+v you should define CTRLV as an enum macro_id enum macro_id { CTRLV } then define the macro logic: const macro_t *action_get_macro(keyrecord_t *recor...
- 02 Mar 2015, 15:33
- Forum: Workshop
- Topic: Miniguru progress
- Replies: 286
- Views: 85375
possibly yes, that's from an old thinkpad R61 (not really sure as I bought only a compatible used keyboard for 5$ from ebay).jonlorusso wrote: ↑Is that a Sprintek SK8702?
- 01 Mar 2015, 19:20
- Forum: Workshop
- Topic: Miniguru progress
- Replies: 286
- Views: 85375
We're currently working on making them CNC producable. Not sure when they'll be ready to sell. For DIY you need machines (lathe, drill press, maybe a mill). I've access to none of those tools, I'm trying to figure what other stuff could be adapted to that usage, but my head can't come up with a goo...
- 28 Feb 2015, 23:37
- Forum: Workshop
- Topic: Miniguru progress
- Replies: 286
- Views: 85375
- 28 Feb 2015, 22:48
- Forum: Workshop
- Topic: HyperMicro madness
- Replies: 200
- Views: 57109
- 28 Feb 2015, 22:42
- Forum: Workshop
- Topic: Miniguru progress
- Replies: 286
- Views: 85375
can I ask what stem/rod/pole you are using to control the trackpoint ? I have one of these http://i.imgur.com/tbaJ99y.jpg and a 2mm wide hole on the plate, and don't really know how to attach something there to move that small plastic nub
- 28 Feb 2015, 21:04
- Forum: Workshop
- Topic: Connecting thinkpad trackpoint mouse+buttons to teensy 2
- Replies: 10
- Views: 10245
I would like to do a recap and add some info about the configuration of the tmk firmware for handling both the keyboard matrix and the trackpoint with a single teensy 2.0 (I have a 60% kb with 15x5 colxrows, so I have enough pins on the controller). Wiring For the wiring you should see those resourc...
- 25 Feb 2015, 17:52
- Forum: Workshop
- Topic: Connecting thinkpad trackpoint mouse+buttons to teensy 2
- Replies: 10
- Views: 10245
- 25 Feb 2015, 17:45
- Forum: Keyboards
- Topic: Keycap profile, I screwed up
- Replies: 6
- Views: 1873
ok I've put them to trade here http://deskthority.net/want-to-trade-f5 ... l?uid=7423 let's see if I'm lucky enough this time.
- 25 Feb 2015, 15:07
- Forum: Keyboards
- Topic: Keycap profile, I screwed up
- Replies: 6
- Views: 1873
- 24 Feb 2015, 23:09
- Forum: Keyboards
- Topic: Keycap profile, I screwed up
- Replies: 6
- Views: 1873
mh no the one from 7bit I got are not spherical (darker one) https://imgur.com/a/TvZR7
- 24 Feb 2015, 22:34
- Forum: Keyboards
- Topic: Keycap profile, I screwed up
- Replies: 6
- Views: 1873
Keycap profile, I screwed up
Hi there, I recently buyed this set http://www.ebay.com/itm/PBT-87-Set-Blank-White-Key-Caps-for-Cherry-MX-Keyboard-/281548917535 , and some keycaps from 7bit that presumably are from signature plastic, I wasn't aware though that the one from ebay are taller, probably a different profile, is signatur...
- 17 Feb 2015, 19:37
- Forum: Workshop
- Topic: Connecting thinkpad trackpoint mouse+buttons to teensy 2
- Replies: 10
- Views: 10245
I'm asking here https://electronics.stackexchange.com/q ... 202_155671 and this sorts out some material on the geekhack forum, probably that will end up in a solution.
- 17 Feb 2015, 17:27
- Forum: Workshop
- Topic: Connecting thinkpad trackpoint mouse+buttons to teensy 2
- Replies: 10
- Views: 10245
here it is some images of the trackpoint and what I could trace https://imgur.com/a/Dj1bG
- 17 Feb 2015, 16:39
- Forum: Workshop
- Topic: Connecting thinkpad trackpoint mouse+buttons to teensy 2
- Replies: 10
- Views: 10245
I saw that last thread mtl posted, I think it is somewhat different from mine because I managed to trace some pins from the keyboard, for example I have button 1 on pin 4, button 2 on pin 3 and button 3 on pin 5, the controller on the trackpoint is a PTPM754DR and I can't find spech of this one, als...
- 11 Feb 2015, 23:06
- Forum: Workshop
- Topic: Group Build prototyping phase
- Replies: 1739
- Views: 366652
- 30 Jan 2015, 17:12
- Forum: Workshop
- Topic: Workshop, Threads Of Interest
- Replies: 49
- Views: 35997
- 30 Jan 2015, 15:49
- Forum: Workshop
- Topic: Workshop, Threads Of Interest
- Replies: 49
- Views: 35997