From 0f5120c7431fc044611f7c8388b008ac33f08f35 Mon Sep 17 00:00:00 2001
From: "Peter J. A. Cock"
Date: Mon, 16 Jun 2025 11:43:30 +0900
Subject: [PATCH] Rename tutte_coxeter_36e -> tutte_coxeter_36k
It was e for edge, now k for keys. Why? I'm toying with ideas
for a full Tutte Coxeter graph (30 vertices/nodes/GPIO pins,
45 edges/switches) incuding 42 keys plus a rotary encoder
(these act like three switches: clockwise, anticlockwise,
press - so 42 edges for normal keys + 3 edges for a rotary
encoder gives 42 + 3 = 45 edges) which could be named with
suffix 43ke.
---
README.md | 2 +-
.../keyboard.json | 2 +-
.../keymaps/default/keymap.c | 0
.../{tutte_coxeter_36e => tutte_coxeter_36k}/readme.md | 8 ++++----
qmk.json | 2 +-
5 files changed, 7 insertions(+), 7 deletions(-)
rename keyboards/{tutte_coxeter_36e => tutte_coxeter_36k}/keyboard.json (98%)
rename keyboards/{tutte_coxeter_36e => tutte_coxeter_36k}/keymaps/default/keymap.c (100%)
rename keyboards/{tutte_coxeter_36e => tutte_coxeter_36k}/readme.md (92%)
diff --git a/README.md b/README.md
index 5f6b09c2..2162a0e3 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ I am also using this to host QMK firmware for any of my own keyboard PCBs (with
`preparation_command` [tweak](/.github/workflows/build_binaries.yaml) to the GitHub
Actions to compile these online):
-* [Tutte-Coxeter 36e](keyboards/tutte_coxeter_36e/readme.md) - my no-diode single
+* [Tutte-Coxeter 36k](keyboards/tutte_coxeter_36k/readme.md) - my no-diode single
PCB design for a monoblock split 3x5_3 design using Graph Theory (topology) to
avoid ghosting. This has a sparse 13x13 scanning matrix (using 26 GPIO pins)
for 36 keys with 6-key rollover (the USB HID limit).
diff --git a/keyboards/tutte_coxeter_36e/keyboard.json b/keyboards/tutte_coxeter_36k/keyboard.json
similarity index 98%
rename from keyboards/tutte_coxeter_36e/keyboard.json
rename to keyboards/tutte_coxeter_36k/keyboard.json
index 1f062f58..baa11da9 100644
--- a/keyboards/tutte_coxeter_36e/keyboard.json
+++ b/keyboards/tutte_coxeter_36k/keyboard.json
@@ -1,6 +1,6 @@
{
"manufacturer": "Peter J. A. Cock",
- "keyboard_name": "tutte_coxeter_36e",
+ "keyboard_name": "tutte_coxeter_36k",
"maintainer": "peterjc",
"bootloader": "rp2040",
"diode_direction": "COL2ROW",
diff --git a/keyboards/tutte_coxeter_36e/keymaps/default/keymap.c b/keyboards/tutte_coxeter_36k/keymaps/default/keymap.c
similarity index 100%
rename from keyboards/tutte_coxeter_36e/keymaps/default/keymap.c
rename to keyboards/tutte_coxeter_36k/keymaps/default/keymap.c
diff --git a/keyboards/tutte_coxeter_36e/readme.md b/keyboards/tutte_coxeter_36k/readme.md
similarity index 92%
rename from keyboards/tutte_coxeter_36e/readme.md
rename to keyboards/tutte_coxeter_36k/readme.md
index ffc62350..6ce04bed 100644
--- a/keyboards/tutte_coxeter_36e/readme.md
+++ b/keyboards/tutte_coxeter_36k/readme.md
@@ -1,4 +1,4 @@
-# Tutte Coxeter 36e
+# Tutte Coxeter 36k

@@ -12,16 +12,16 @@ The first physical PCB for this is designed to fit in the [Gamma Omega keyboard]
and use the same Raspberry Pi Pico based microcontroller board.
* Keyboard Maintainer: [Peter J. A. Cock](https://github.com/peterjc)
-* Hardware Supported: Tutte Coxeter 36e (single PCB) with Raspberry Pi Pico
+* Hardware Supported: Tutte Coxeter 36k (single PCB) with Raspberry Pi Pico
* Hardware Availability: https://github.com/peterjc/gamma-omega
Make example for this keyboard (after setting up your build environment):
- make tutte_coxeter_36e:default
+ make tutte_coxeter_36k:default
Flashing example for this keyboard:
- make tutte_coxetter_36e:default:flash
+ make tutte_coxetter_36k:default:flash
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
diff --git a/qmk.json b/qmk.json
index 4f2ec29e..16084efa 100644
--- a/qmk.json
+++ b/qmk.json
@@ -1,6 +1,6 @@
{
"userspace_version": "1.1",
"build_targets": [
- ["tutte_coxeter_36e", "default"]
+ ["tutte_coxeter_36k", "default"]
]
}