Skip to content

Commit

Permalink
Fix DiodeOrientation to columns_to_anodes mapping (#1063)
Browse files Browse the repository at this point in the history
  • Loading branch information
xs5871 authored Dec 23, 2024
1 parent b939ac7 commit dbc2650
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kmk/scanners/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ class DiodeOrientation:
COL2ROW and ROW2COL are equivalent to their meanings in QMK.
'''

COLUMNS = 0
ROWS = 1
COLUMNS = 1
ROWS = 0
COL2ROW = COLUMNS
ROW2COL = ROWS

Expand Down

0 comments on commit dbc2650

Please sign in to comment.