12 lines
325 B
C
12 lines
325 B
C
|
// Copyright 2023 Oleg Titov <oleg.titov@gmail.com>
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
// Unique keyboard id
|
||
|
#define VIAL_KEYBOARD_UID {0x3D, 0x84, 0x24, 0x54, 0xAA, 0xE1, 0xA2, 0x09}
|
||
|
|
||
|
// Unlock with first and last keys
|
||
|
#define VIAL_UNLOCK_COMBO_ROWS { 0, 2 }
|
||
|
#define VIAL_UNLOCK_COMBO_COLS { 0, 3 }
|