mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-15 16:52:38 +03:00
10 lines
164 B
C
10 lines
164 B
C
|
#pragma once
|
||
|
#include <stdint.h>
|
||
|
|
||
|
static const uint8_t IBUTTON_KEY_SIZE = 8;
|
||
|
|
||
|
enum class iButtonKeyType : uint8_t {
|
||
|
KeyDallas,
|
||
|
KeyCyfral,
|
||
|
KeyMetakom,
|
||
|
};
|