zmk/app/boards/shields/pinky4/pinky4.dtsi
Shawn Rutledge d1d9b06ebb Begin adding Pinky4
Copied Sofle and modified.

Default keymap like that of QMK (not a keymap I want to use though)

Fixes #1604
2022-12-22 23:50:45 +01:00

68 lines
2.5 KiB
Text

/*
* Copyright (c) 2020 Pete Johanson, Ryan Cross
* Copyright (c) 2022 Shawn Rutledge
*
* SPDX-License-Identifier: MIT
*/
#include <dt-bindings/zmk/matrix_transform.h>
/ {
chosen {
zephyr,display = &oled;
zmk,kscan = &kscan0;
zmk,matrix_transform = &default_transform;
};
default_transform: keymap_transform_0 {
compatible = "zmk,matrix-transform";
columns = <16>;
rows = <5>;
// | SW29 | SW24 | SW19 | SW14 | SW10 | SW6 | SW2 | | SW2 | SW6 | SW10 | SW14 | SW19 | SW24 | SW29 |
// | SW30 | SW25 | SW20 | SW15 | SW11 | SW7 | SW3 | | SW3 | SW7 | SW11 | SW15 | SW20 | SW25 | SW30 |
// | SW31 | SW26 | SW21 | SW16 | SW12 | SW8 | SW4 | | SW4 | SW8 | SW12 | SW16 | SW21 | SW26 | SW31 |
// | SW32 | SW27 | SW22 | SW17 | SW13 | SW9 | SW5 | | SW5 | SW9 | SW13 | SW17 | SW22 | SW27 | SW32 |
// | SW33 | SW28 | SW23 | SW18 | | SW18 | SW23 | SW28 | SW33 |
map = <
RC(0,0) RC(0,1) RC(0,2) RC(0,3) RC(0,4) RC(0,5) RC(0,6) RC(0,7) RC(0,8) RC(0,9) RC(0,10) RC(0,11) RC(0,12) RC(0,13)
RC(1,0) RC(1,1) RC(1,2) RC(1,3) RC(1,4) RC(1,5) RC(1,6) RC(1,7) RC(1,8) RC(1,9) RC(1,10) RC(1,11) RC(1,12) RC(1,13)
RC(2,0) RC(2,1) RC(2,2) RC(2,3) RC(2,4) RC(2,5) RC(2,6) RC(2,7) RC(2,8) RC(2,9) RC(2,10) RC(2,11) RC(2,12) RC(2,13)
RC(3,0) RC(3,1) RC(3,2) RC(3,3) RC(3,4) RC(3,5) RC(3,6) RC(3,7) RC(3,8) RC(3,9) RC(3,10) RC(3,11) RC(3,12) RC(3,13)
RC(4,3) RC(4,4) RC(4,5) RC(4,6) RC(4,7) RC(4,8) RC(4,9) RC(4,10)
>;
};
kscan0: kscan {
compatible = "zmk,kscan-gpio-matrix";
label = "KSCAN";
diode-direction = "col2row";
row-gpios
= <&pro_micro 4 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> // Row 0 from the schematic
, <&pro_micro 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> // Row 1
, <&pro_micro 6 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> // Row 2
, <&pro_micro 7 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> // Row 3
, <&pro_micro 8 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> // Row 4
;
};
};
&pro_micro_i2c {
status = "okay";
oled: ssd1306@3c {
compatible = "solomon,ssd1306fb";
reg = <0x3c>;
label = "DISPLAY";
width = <128>;
height = <32>;
segment-offset = <0>;
page-offset = <0>;
display-offset = <0>;
multiplex-ratio = <31>;
segment-remap;
com-invdir;
com-sequential;
prechargep = <0x22>;
};
};