mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-19 20:45:18 -05:00
feat(shields): Add tester_xiao layouts Added two layouts for the XIAO tester shield: - Keys arranged to match the XIAO pinout, viewed from the front - Single row of eleven keys These layouts are abstractions since the tester_xiao shield may be used in a situation where the "keys" are actually jumper wires on a breadboard or the like. feat(shields): Add tester_pro_micro layouts Added two layouts for the Pro Micro tester shield: - Keys arranged to match the Pro Micro pinout, viewed from the front - Single row of eighteen keys
67 lines
2.7 KiB
Plaintext
67 lines
2.7 KiB
Plaintext
/*
|
|
* Copyright (c) 2025 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <physical_layouts.dtsi>
|
|
|
|
// The tester might not have any physical keys at all, so these
|
|
// physical layouts are pretty much imaginary.
|
|
|
|
/ {
|
|
tester_position_map {
|
|
compatible = "zmk,physical-layout-position-map";
|
|
complete;
|
|
|
|
pinout_map: pinout_positions {
|
|
physical-layout = <&physical_layout0>;
|
|
positions = <0 1 2 3 4 5 6 7 8 9 10>;
|
|
};
|
|
inline_map: single_row_positions {
|
|
physical-layout = <&physical_layout1>;
|
|
positions = <0 1 2 3 4 5 6 7 8 9 10>;
|
|
};
|
|
};
|
|
|
|
physical_layout0: physical_layout_0 {
|
|
compatible = "zmk,physical-layout";
|
|
display-name = "XIAO Pinout";
|
|
|
|
// Map key positions to the XIAO pinout.
|
|
keys // w h x y rot rx ry
|
|
= <&key_physical_attrs 100 100 0 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 0 100 0 0 0>
|
|
, <&key_physical_attrs 100 100 0 200 0 0 0>
|
|
, <&key_physical_attrs 100 100 0 300 0 0 0>
|
|
, <&key_physical_attrs 100 100 0 400 0 0 0>
|
|
, <&key_physical_attrs 100 100 0 500 0 0 0>
|
|
, <&key_physical_attrs 100 100 0 600 0 0 0>
|
|
, <&key_physical_attrs 100 100 600 600 0 0 0>
|
|
, <&key_physical_attrs 100 100 600 500 0 0 0>
|
|
, <&key_physical_attrs 100 100 600 400 0 0 0>
|
|
, <&key_physical_attrs 100 100 600 300 0 0 0>
|
|
;
|
|
};
|
|
|
|
physical_layout1: physical_layout_1 {
|
|
compatible = "zmk,physical-layout";
|
|
display-name = "Single Row";
|
|
|
|
// Single row of eleven "keys".
|
|
keys // w h x y rot rx ry
|
|
= <&key_physical_attrs 100 100 0 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 100 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 200 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 300 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 400 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 500 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 600 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 700 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 800 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 900 0 0 0 0>
|
|
, <&key_physical_attrs 100 100 1000 0 0 0 0>
|
|
;
|
|
};
|
|
};
|