|
| enum | LedIdleState : byte { Off = 0x00,
On = 0x01
} |
| |
| enum | ConfigurationType : byte { KeyboardWedgeConfig1 = 0xA8,
KeyboardWedgeConfig2 = 0xA9,
KeyboardWedgeConfig3 = 0xAa
} |
| |
| enum | CardType : byte {
NotUsed = 0x00,
MifareClassic = 0x01,
Ultralight = 0x02,
DesFire = 0x03,
Seos = 0x04,
Iclass = 0x05,
FeliCa = 0x06,
Iso15693 = 0x08,
Iso14443B = 0x09,
GenericIso14443A = 0x0a
} |
| |
| enum | KbWedgeConfigCommand : byte {
KbwCardType = 0x80,
KbwKeyboardLayout = 0x80,
KbwExtendedCharSupport = 0x80,
KbwOutputFormat = 0x81,
KbwCharactersDiff = 0x81,
KbwFlags = 0x82,
KbwRangeStart = 0x83,
KbwRangeLength = 0x84,
KbwPostStrokesStart = 0x85,
KbwPrePostStrokes = 0x86
} |
| |
| enum | OutputFormat : byte {
Ascii = 0x00,
Bcd = 0x01,
Bin = 0x02,
HexLowerCase = 0x03,
Dec = 0x04,
HexUpperCase = 0x05
} |
| |
| enum | OutputType : byte { Uid = 0x00,
Pacs = 0x01
} |
| |
| enum | DataOrder : byte { Normal = 0x00,
Reversed = 0x01
} |
| |
| enum | KeyboardLayout : byte { DefaultUsLayout = 0x00,
SecondLayout = 0x01
} |
| |
| enum | ExtendedCharacterSupport : byte { Windows = 0x00,
Linux = 0x01,
MacOs = 0x02
} |
| |
| enum | FeatureSupport : byte { Disabled = 0x00,
Enabled = 0x01
} |
| |