@schie/fluent-zpl - v0.10.0
    Preparing search index...

    Interface RFIDOpts

    Options for RFID fields on the label.

    This interface defines the configuration options for adding RFID fields to a label:

    • epc: The EPC data to encode, provided as a hexadecimal string.
    • position: Optional distance from the label edge in dots.
    • password: Optional password for protected operations, provided as a hexadecimal string.
    • bank: Optional memory bank to write to, which can be 'EPC', 'TID', or 'USER'.
    • offset: Optional offset within the specified memory bank.
    • length: Optional length of data to write.
    interface RFIDOpts {
        bank?: RFIDBank;
        epc: string;
        length?: number;
        offset?: number;
        password?: string;
        position?: number;
    }
    Index

    Properties

    bank?: RFIDBank

    Memory bank to write to: EPC, TID, USER

    epc: string

    EPC data to encode (hex string)

    length?: number

    Length of data to write

    offset?: number

    Offset within memory bank

    password?: string

    Password for protected operations (hex string)

    position?: number