this post was submitted on 30 Nov 2023
16 points (94.4% liked)

ErgoMechKeyboards

5771 readers
6 users here now

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

founded 1 year ago
MODERATORS
 

Hello, I have a question before starting the soldering process, can you confirm me the diode is correctly oriented ?

Thank you !

top 6 comments
sorted by: hot top controversial new old
[–] jjagaimo@lemmy.ca 7 points 9 months ago

It should be but to be 100% sure you should check the schematic/PCB layout and the datasheet for the part. It's extremely rare for a part like a diode to have a non-standard marking pattern so this would be correct, but it's not unheard of.

[–] maxmalrichtig@discuss.tchncs.de 5 points 9 months ago

Yes. You see that triangle with a line on top of it on the PCB? The line on your diode should be on the same side as the line on that marking.

Diode direction from Wikipedia

[–] Nibodhika@lemmy.world 3 points 9 months ago

Should be, that's the orientation I solder mine and it works.

[–] Chimrod@jlai.lu 2 points 9 months ago

Thanks all for your comments and answers, I’ve just tests the keyboard and it seems to work pretty fine, I’m really happy, I didn’t expect to get something working directly!

As a reminder, here is the commands I’ve used to get the firmware to copy:

# Install the required compiler
sudo apt install gcc-arm-none-eabi
# Enter in the virtual environment
. ~/.virtualenvs/qmk/bin/activate.fish
# Check the keyboard
qmk list-keyboards | grep sofle
# Check the keymaps
qmk list-keymaps -kb sofle_choc
# Compile
qmk flash -kb sofle_choc -km via -e CONVERT_TO=promicro_rp2040
[–] evo@sh.itjust.works -3 points 9 months ago* (last edited 9 months ago) (1 children)

AFAIK orientation does not matter as long as it is consistent across the entire board. Double check with the PCB designer/manufacturer.

Edit: Why exactly am I being downvoted? What I said is correct. Hope it helps somebody as adding one line to the firmware is trivial, especially as compared to re-soldering.

[–] Morphit@feddit.uk 9 points 9 months ago

While true, you would have to change the firmware to swap column and row polarity if you reverse all the diodes e.g. #define DIODE_DIRECTION ROW2COL in QMK. Conventionally, QMK assumes rows are on the cathode side of the diodes and drives the columns high. ROW2COL reverses that so that the rows are driven high and columns scanned instead.

It's best to stick to the convention so you avoid surprises.