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

    Interface RFIDReadOpts

    Options for RFID read operations.

    This interface defines the configuration options for reading RFID tag data:

    • bank: Optional memory bank to read from. Use HostBuffer to emit ^RFR,H.
    • offset: Optional offset within the memory bank (ignored for HostBuffer).
    • length: Optional length of data to read (ignored for HostBuffer).
    • password: Optional password for protected operations.
    interface RFIDReadOpts {
        bank?: RFIDBank;
        length?: number;
        offset?: number;
        password?: string;
    }
    Index

    Properties

    bank?: RFIDBank
    length?: number
    offset?: number
    password?: string