More consistent DT for the split encoders.

This commit is contained in:
Pete Johanson 2020-07-21 14:01:15 -04:00
parent 3338b3f7de
commit a734d58ffe
3 changed files with 26 additions and 10 deletions

View File

@ -10,6 +10,7 @@
chosen {
zmk,kscan = &kscan0;
zmk,matrix_transform = &default_transform;
zmk,encoders = <&left_encoder &right_encoder>;
};
default_transform: keymap_transform_0 {
@ -58,6 +59,24 @@ 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)
};
left_encoder: encoder_left {
compatible = "alps,ec11";
label = "LEFT_ENCODER";
a-gpios = <&pro_micro_d 9 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>;
b-gpios = <&pro_micro_d 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>;
resolution = <4>;
status = "disabled";
};
right_encoder: encoder_right {
compatible = "alps,ec11";
label = "RIGHT_ENCODER";
a-gpios = <&pro_micro_d 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>;
b-gpios = <&pro_micro_d 9 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>;
resolution = <4>;
status = "disabled";
};
// TODO: Encoder node(s)
// TODO: OLED node
// TODO: RGB node(s)

View File

@ -6,16 +6,6 @@
#include "kyria.dtsi"
/ {
encoder: encoder0 {
compatible = "alps,ec11";
label = "Rotary Encoder";
a-gpios = <&pro_micro_d 9 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>;
b-gpios = <&pro_micro_d 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>;
resolution = <4>;
};
};
&kscan0 {
col-gpios
= <&pro_micro_a 3 GPIO_ACTIVE_HIGH>
@ -29,3 +19,6 @@
;
};
&left_encoder {
status = "okay";
};

View File

@ -23,3 +23,7 @@
;
};
&right_encoder {
status = "okay";
};