Browse Source

[Keyboard] Fix Mechlovin's Olly/BB keyboard matrix file (#14680)

pull/14701/head
Drashna Jaelre 2 years ago
committed by GitHub
parent
commit
6279399425
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 34 deletions
  1. +35
    -34
      keyboards/mechlovin/olly/bb/matrix.c

+ 35
- 34
keyboards/mechlovin/olly/bb/matrix.c View File

@ -17,6 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "matrix.h"
#include "gpio.h"
static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
@ -27,40 +28,40 @@ static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS;
* 0: 0 0 0 1 0 0 0 0
*
* 1: 0 0 1 1 0 0 0 0
*
* 2: 0 1 0 1 0 0 0 0
*
* 3: 0 1 1 1 0 0 0 0
*
* 4: 1 0 0 1 0 0 0 0
*
* 5: 1 0 1 1 0 0 0 0
*
* 6: 1 1 0 1 0 0 0 0
*
* 7: 1 1 1 1 0 0 0 0
*
* 8: 1 1 1 0 1 0 0 0
*
* 9: 0 0 0 0 1 0 0 0
*
*10: 0 0 1 0 1 0 0 0
*
*11: 0 1 0 0 1 0 0 0
*
*12: 0 1 1 0 1 0 0 0
*
*13: 1 0 0 0 1 0 0 0
*
*14: 1 0 1 0 1 0 0 0
*
*15: 1 1 0 0 1 0 0 0
*
*16: 0 0 0 0 0 1 0 0
*
*17: 0 0 0 0 0 0 1 0
*
*18: 0 0 0 0 0 0 0 1
*
* 2: 0 1 0 1 0 0 0 0
*
* 3: 0 1 1 1 0 0 0 0
*
* 4: 1 0 0 1 0 0 0 0
*
* 5: 1 0 1 1 0 0 0 0
*
* 6: 1 1 0 1 0 0 0 0
*
* 7: 1 1 1 1 0 0 0 0
*
* 8: 1 1 1 0 1 0 0 0
*
* 9: 0 0 0 0 1 0 0 0
*
*10: 0 0 1 0 1 0 0 0
*
*11: 0 1 0 0 1 0 0 0
*
*12: 0 1 1 0 1 0 0 0
*
*13: 1 0 0 0 1 0 0 0
*
*14: 1 0 1 0 1 0 0 0
*
*15: 1 1 0 0 1 0 0 0
*
*16: 0 0 0 0 0 1 0 0
*
*17: 0 0 0 0 0 0 1 0
*
*18: 0 0 0 0 0 0 0 1
*
*/
static void select_col(uint8_t col) {


Loading…
Cancel
Save