11 lines
162 B
C
11 lines
162 B
C
|
// Copyright 2023 Andrew Kannan
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
enum my_keycodes {
|
||
|
ENC_PRESS = QK_KB_0,
|
||
|
CLOCK_SET,
|
||
|
OLED_TOGG
|
||
|
};
|