* Make it easier to test split code with ZMK Uno hardware by adding a split left/right setup as well.
22 lines
390 B
Text
22 lines
390 B
Text
/*
|
|
* Copyright (c) 2022 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "zmk_uno.dtsi"
|
|
|
|
/ {
|
|
chosen {
|
|
zmk,matrix-transform = &matrix_transform;
|
|
};
|
|
sensors {
|
|
compatible = "zmk,keymap-sensors";
|
|
sensors = <&encoder>;
|
|
triggers-per-rotation = <20>;
|
|
left {
|
|
triggers-per-rotation = <20>;
|
|
};
|
|
};
|
|
|
|
};
|