You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1007 B
60 lines
1007 B
3 years ago
|
/*
|
||
|
* Copyright (c) 2022 The ZMK Contributors
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*/
|
||
|
|
||
|
#include <dt-bindings/zmk/matrix_transform.h>
|
||
|
|
||
|
/ {
|
||
|
chosen {
|
||
|
zmk,kscan = &kscan0;
|
||
|
zmk,matrix_transform = &default_transform;
|
||
|
};
|
||
|
|
||
|
kscan0: kscan {
|
||
|
compatible = "zmk,kscan-gpio-matrix";
|
||
|
label = "KSCAN";
|
||
|
|
||
|
diode-direction = "col2row";
|
||
|
};
|
||
|
|
||
|
left_encoder: encoder_left {
|
||
|
compatible = "alps,ec11";
|
||
|
label = "LEFT_ENCODER";
|
||
|
resolution = <4>;
|
||
|
status = "disabled";
|
||
|
};
|
||
|
|
||
|
right_encoder: encoder_right {
|
||
|
compatible = "alps,ec11";
|
||
|
label = "RIGHT_ENCODER";
|
||
|
resolution = <4>;
|
||
|
status = "disabled";
|
||
|
};
|
||
|
|
||
|
sensors {
|
||
|
compatible = "zmk,keymap-sensors";
|
||
|
sensors = <&left_encoder &right_encoder>;
|
||
|
};
|
||
|
|
||
|
// TODO: RGB node(s)
|
||
|
};
|
||
|
|
||
|
&pro_micro_i2c {
|
||
|
status = "okay";
|
||
|
|
||
|
ssd1306@3c {
|
||
|
compatible = "solomon,ssd1306fb";
|
||
|
reg = <0x3c>;
|
||
|
label = "DISPLAY";
|
||
|
width = <128>;
|
||
|
height = <64>;
|
||
|
segment-offset = <0>;
|
||
|
page-offset = <0>;
|
||
|
display-offset = <0>;
|
||
|
multiplex-ratio = <63>;
|
||
|
prechargep = <0x22>;
|
||
|
};
|
||
|
};
|