mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-13 13:29:50 +04: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,
|
||
|
|
};
|