Skip to content

Commit

Permalink
Fixed encoder rotate wrong order on rev 2, and resolved some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
HorrorTroll committed Oct 21, 2022
1 parent 794a301 commit 00a52b7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
8 changes: 6 additions & 2 deletions keyboards/doio/kb16/rev1/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ A macropad that have 16-key keyboard made by DOIO, which controlled by an Atmega

Make example for this keyboard (after setting up your build environment):

make doio/kb16/rev1:default
`make doio/kb16/rev1:default`
or with the qmk cli:
`qmk compile -kb doio/kb16/rev1 -km default`

Flashing example for this keyboard:

make doio/kb16/rev1:default:flash
`make doio/kb16/rev1:default:flash`
or with the qmk cli:
`qmk flash -kb doio/kb16/rev1 -km default`

See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

Expand Down
4 changes: 2 additions & 2 deletions keyboards/doio/kb16/rev2/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
#endif

/* Encoder pins */
#define ENCODERS_PAD_A { A1, B5, A3 }
#define ENCODERS_PAD_B { A2, B6, A4 }
#define ENCODERS_PAD_A { B5, A1, A3 }
#define ENCODERS_PAD_B { B6, A2, A4 }

#ifdef RGB_MATRIX_ENABLE
/* RGB Matrix config */
Expand Down
8 changes: 6 additions & 2 deletions keyboards/doio/kb16/rev2/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ A macropad that have 16-key keyboard made by DOIO, which controlled by an APM32F

Make example for this keyboard (after setting up your build environment):

make doio/kb16/rev2:default
`make doio/kb16/rev2:default`
or with the qmk cli:
`qmk compile -kb doio/kb16/rev2 -km default`

Flashing example for this keyboard:

make doio/kb16/rev2:default:flash
`make doio/kb16/rev2:default:flash`
or with the qmk cli:
`qmk flash -kb doio/kb16/rev2 -km default`

See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

Expand Down

0 comments on commit 00a52b7

Please sign in to comment.