doc/standalone/lf_nedap_sim.md
Frequency: LF (125 kHz) Hardware: Generic Proxmark3
Back to Standalone Modes Index | Source Code | Development Guide
Simulates a Nedap RFID tag with a hardcoded ID. Supports both 64-bit and 128-bit Nedap formats, including proper CRC and framing.
Nedap is a less common but still-deployed access control system, particularly in Europe. This mode lets you test Nedap readers by simulating a known tag. Since Nedap cards are less commonly available than HID, having a simulator is valuable for testing.
isLong=1Default hardcoded values: subType=5, customerCode=0x123, id=42424, isLong=1
| LED | Meaning |
|---|---|
| Minimal LED usage | Simple continuous simulation mode |
| Action | Effect |
|---|---|
| Hold 1000ms | Exit standalone mode |
| USB command | Exit standalone mode |
stateDiagram-v2
[*] --> Simulate : Startup
Simulate --> Simulate : Continuous transmission
Simulate --> [*] : Button hold 1s / USB data
To change the simulated tag, edit the hardcoded values in the source:
static NedapTag_t tag = {
.subType = 0x5,
.customerCode = 0x123,
.id = 42424,
.isLong = 1,
};
make clean
make STANDALONE=LF_NEDAP_SIM -j
./pm3-flash-fullimage