Great job. I’m so happy the Cheapino is getting popular, amazing to have such a low cost to try out and get access to ergonomic keyboards. Now that I’ve got used to mine I can justify upgrading to a Charybdis nano knowing I’ll use it and 34-35 keys is usable.
ErgoMechKeyboards
Ergonomic, split and other weird keyboards
Rules
Keep it ergo
Posts must be of/about keyboards that have a clear delineation between the left and right halves of the keyboard, column stagger, or both. This includes one-handed (one half doesn't exist, what clearer delineation is that!?)
i.e. no regular non-split¹ row-stagger and no non-split¹ ortholinear²
¹ split meaning a separation of the halves, whether fixed in place or entirely separate, both are fine.
² ortholinear meaning keys layed out in a grid
No Spam
No excessive posting/"shilling" for commercial purposes. Vendors are permitted to promote their products/services but keep it to a minimum and use the [vendor] flair. Posts that appear to be marketing without being transparent about it will be removed.
No Buy/Sell/Trade
This subreddit is not a marketplace, please post on r/mechmarket or other relevant marketplace.
Some useful links
- EMK wiki
- Split keyboard compare tool
- Compare keycap profiles Looking for another set of keycaps - check this site to compare the different keycap profiles https://www.keycaps.info/
- Keymap database A database with all kinds of keymap layouts - some of them fits ergo keyboards - get inspired https://keymapdb.com/
First 36 key? Ballsy
We were talking about it for a bit but didn't want to spend all the time figuring out things. So when we came across Cheapino, my friend was like fuck it let's do this and it happened.
Lol that’s how I ended up ordering PCBs from China.
Looking good!
The function of the encoder is custom code, you need to Edit the encoder.c file to tweak it.
P.s. You know you can tweak the led? Turn it off/change color and brightness, all using the qmk rgb keys. (Just wondered if the thing on top is to dim the light:)
The function of the encoder is custom code, you need to Edit the encoder.c file to tweak it.
yeap, found it but the issue is that when encoder is rotated, it switches back to default layer. So, the code to use different things in different layers doesnt work. This is the code I have:
void turned(bool clockwise) {
if (IS_LAYER_ON(0)) {
tap_code16(clockwise ? LCTL(KC_PGDN) : LCTL(KC_PGUP));
}
else if (IS_LAYER_ON(1)) {
tap_code(clockwise ? KC_VOLU : KC_VOLD);
}
else if (IS_LAYER_ON(2)) {
tap_code16(clockwise ? LALT(KC_TAB) : LALT(LSFT(KC_TAB)));
}
else if (IS_LAYER_ON(5)) {
tap_code(clockwise ? KC_MS_WH_DOWN : KC_MS_WH_UP);
}
// else {
// tap_code16(clockwise ? LGUI(KC_Y) : LGUI(KC_Z));
// }
}
P.s. You know you can tweak the led? Turn it off/change color and brightness, all using the qmk rgb keys. (Just wondered if the thing on top is to dim the light:)
Haha...yeap thats exactly what it was for, #define RGBLIGHT_LIMIT_VAL 2
helped me solve it.
Digging some more, I found out that this happens only on the side that has encoder. Holding the layer keys that are on the micro-controller side and rotation encoder yields expected results. So I'm guessing its something to do with the matrix fix. My C isn't that sharp so I'll try to dig through and see what I can find.
As an aside, would recommend looking into Miryoku, it's designed specifically for this layout and may make your life a bit easier in configuration space
cool thanks, I started with that and has already started modifying the layout