Skip to content

Box Command Configurator

Build custom Box Command payloads visually. Select command flags, configure parameters, and get the ready-to-use Base64 string. You can also decode existing commands by pasting their Base64 representation.

Immediate Commands

Planned Commands

Immediate Parameters

Apply to LG / UG commands

Planned Parameters

Apply to LGP / UGP commands

Output

Decode

Use case Flags Key parameters
Unlock car, lock box UC + LB + ST
Lock car, lock box LC + LB + ST
Double unlock (~3 s pause) UG + LB + ST EPR=1, PRD=32, PAD=77
Double lock (~3 s pause) LG + LB + ST EPR=1, PRD=32, PAD=77
Unlock + auto lock ~18 s UC + LB + ST + LCP DP=6
Unlock + auto lock ~1 min UC + LB + ST + LCP + LBP DP=11

Copy the Base64 output and use it as customCommandData in your Tapkey SDK integration:

byte[] commandData = Base64.getDecoder().decode("ABABAAABIE0AAAAAERAAAA==");
TriggerLockCommand command = new DefaultTriggerLockCommandBuilder()
.setCustomCommandData(commandData)
.build();
let commandData = Data(base64Encoded: "ABABAAABIE0AAAAAERAAAA==")!
let command = TriggerLockCommandBuilder()
.setCustomCommandData([UInt8](commandData))
.build()