diff options
author | Ryan <fauxpark@gmail.com> | 2023-04-30 01:51:45 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-30 01:51:45 +1000 |
commit | 998a4d744e60d7d769ddabad1bc8653314f02b02 (patch) | |
tree | 8040bfd3cd910fb0f6416dc65d88564593e9046b /keyboards/handwired/pytest | |
parent | 03328ea7a88995138e0696304738d10942f55129 (diff) |
Remove `FLIP_HALF` layouts and move to data driven (#20588)
Diffstat (limited to 'keyboards/handwired/pytest')
-rw-r--r-- | keyboards/handwired/pytest/info.json | 5 | ||||
-rw-r--r-- | keyboards/handwired/pytest/pytest.h | 11 |
2 files changed, 4 insertions, 12 deletions
diff --git a/keyboards/handwired/pytest/info.json b/keyboards/handwired/pytest/info.json index 8f82662058..a966477f24 100644 --- a/keyboards/handwired/pytest/info.json +++ b/keyboards/handwired/pytest/info.json @@ -9,10 +9,13 @@ }, "processor": "atmega32u4", "bootloader": "atmel-dfu", + "layout_aliases": { + "LAYOUT": "LAYOUT_ortho_1x1" + }, "layouts": { "LAYOUT_ortho_1x1": { "layout": [ - { "x": 0, "y": 0 } + {"matrix": [0, 0], "x": 0, "y": 0} ] } } diff --git a/keyboards/handwired/pytest/pytest.h b/keyboards/handwired/pytest/pytest.h deleted file mode 100644 index b8fe7dde59..0000000000 --- a/keyboards/handwired/pytest/pytest.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#include "quantum.h" - -#define LAYOUT_ortho_1x1( \ - k00 \ -) { \ - { k00 } \ -} - -#define LAYOUT LAYOUT_ortho_1x1 |