31 lines
687 B
Text
31 lines
687 B
Text
/*
|
|
* Copyright (c) 2020 Pete Johanson
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "kyria.dtsi"
|
|
|
|
/ {
|
|
encoder: encoder0 {
|
|
compatible = "alps,ec11";
|
|
label = "Rotary 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>;
|
|
};
|
|
};
|
|
|
|
&kscan0 {
|
|
col-gpios
|
|
= <&pro_micro_a 3 GPIO_ACTIVE_HIGH>
|
|
, <&pro_micro_a 2 GPIO_ACTIVE_HIGH>
|
|
, <&pro_micro_a 1 GPIO_ACTIVE_HIGH>
|
|
, <&pro_micro_a 0 GPIO_ACTIVE_HIGH>
|
|
, <&pro_micro_d 15 GPIO_ACTIVE_HIGH>
|
|
, <&pro_micro_d 14 GPIO_ACTIVE_HIGH>
|
|
, <&pro_micro_d 16 GPIO_ACTIVE_HIGH>
|
|
, <&pro_micro_d 10 GPIO_ACTIVE_HIGH>
|
|
;
|
|
};
|
|
|