Should a firmware already see key presses or do I need to solder all cols/rows first?
Carlos Quiroz
@cquiroz
This is an Atreus 62 with the default firmware
Drashna Jaelre
@drashna
well, you may want to move to discord, since we're all over there now
but that said.... if the firmware is flashed, you should be able to bridge/short the column/row pins to trigger a keypress.
marhalloweenvt
@marhalloweenvt
Hello guys, i just want to ask how i can use a qmk keyboard with ps/2 protocol?
Joshua Martin
@tuftman-0
I would also like to know how to use the ps/2 protocol
Drashna Jaelre
@drashna
you mean so it uses a PS/2 port rather than USB?
also, it may be best to move this to Discord, as that's a lot more active.
Benny Powers
@bennypowers
This message was deleted
Florian Finkernagel
@TyberiusPrime
Hey, I have a hand wired split keyboard (based on the dactyl manuform) code, but the master/slave stuff works only if the one side is master, not if it is the other. I use EE_HANDS, the boards identify correctly as lefthand right hand. Where could I start debugging why it fails in one direction but not in the other?
Florian Finkernagel
@TyberiusPrime
(I should mention, this is serial)
Drashna Jaelre
@drashna
You may want to head to the Discord, since gitter really isn't active anymore (link in title)
and you may want to reflash both halves
Florian Finkernagel
@TyberiusPrime
@drashna thanks
@drashna though the discord link claims 'invite invalid ':(
HeroXLazer
@HeroXLazer
Does anyone know the way to sync two IS31Fl3731s?
Also, in the UHK datasheet app notes, it says 48 RGB LEDs are possible using diodess?
Hey there. Is there any official stance on using stuff like #pragma over include guards?
ah just found that in the coding style. nice :)
missed it on the first skim
Blondazz
@Blondazz
Hey, i have a problem with driver installation, and i can't find any solution online. At this point i should get a popup to input admin password but instead this happens https://puu.sh/DHwyI/7789991ff3.png
Drashna Jaelre
@drashna
@HeroXLazer could you move to discord?
@TyberiusPrime sorry for the late reply, but it shold still work
@Blondazz also, could you move to discord (link in header)? But you're using MSYS, right?
Gabriel Mazetto
@brodock
Would you be open to merge a .gitlab-ci.yml so people forking the codebase in GitLab would have CI available by default? I’m happy to contribute (I have to setup myself)
Mikkel Jeppesen
@Duckle29
Hey there, how does setting the bootloader solve: qmk/qmk_firmware#3091 I'm working on a revision 2 of a keyboard, and have so far managed to have the code automatically detect revision (there's a pin pulled down on rev2), and would love avoiding a /rev1 and /rev2 folder just for this makefile rule
@brodock sorry this is so late ... but you can add it anywhere in your own repo, and have it called. I do that, and have it located in /users/drashna/.gitlab-ci.yml
lffcruz
@lffcruz
Hi guys, I'm building a redox wireless with a twist... the receiver has keys, oled and a rotary encoder. the two halfs matrix arrives from serial and I want to expand the matrix_scan to also get the keys on the receiver. I'm thinking to just add 2cols*5 rows to the matirx and scan the receiver keys into those positions. My question is if this would be the way to go and where can I find some debouncing implementation examples so I can get it performing well... can you point me to some examples on custom matrix_scan implementations? THANKS!!!!
mengo
@ts-xie
Hi, I have problem when trying to flash my keyboard with dfu-programmer. device not found. even I can clearly see it is in boot-loader mode using lsusb. Can someone help me identify the root cause? OS: linux mint
Drashna Jaelre
@drashna
just a heads up, the channel here has been depreciated. The discord link up top is your bast bet
@ts-xie have you added rules to udev?
mengo
@ts-xie
@drashna Hi, sorry didn't know this one is deprecated. No, I didn't add any rule to udev.
:wave: Anyone have a layer for controlling macOS VoiceOver? (ergodox preferably)
Benny Powers
@bennypowers
:wave: is there a built-in to cycle through available layers? e.g. say there are 3 available layers, starting at 0, tap to go to 1, tap to go to 2, tap to go to 0
Benny Powers
@bennypowers
I ended up doing this in process_record_user, and then puking
case CYC_LYR:
if (record->event.pressed) {
if (layer_state_is(2)) {
layer_move(0);
} elseif (layer_state_is(1)) {
layer_move(2);
} elseif (layer_state_is(0)) {
layer_move(1);
}
}
returnfalse;
Mikael Göransson
@mgor
trying to find the led index for my KC_CAPS with keymap_key_to_keycode, but it doesn't seem to work. my guess is it's because in my keymap, it's mapped as LT(1, KC_CAPS)? how would one find a key that is mapped with one of the layer modification functions?
cheater
@cheater
hi all
what's the best way to currently get qmk working with a model f? i'm fine with a bit of programming or soldering, i'm good with both. i know of the xwhatsit but i was under the impression that it uses a slow ish microcontroller.
Is anyone here using atmega32u4 with both PS/2 mouse/trackpoint AND rotary encoder?
I'm trying to do both, but enabling PS/2 for my trackpoint lowers matrix scan rate around 10x, from 1ms/scan to 11~12ms/scan. This leads to encoder being almost unresponsive. Related issue: qmk/qmk_firmware#5357