Plugin for C4 Devices to use Barcode and UHF RFID
npm install c4-api-capacitor-plugin
npx cap syncecho(options: { value: string; }) => Promise<{ value: string; }>| Param | Type |
|---|---|
options |
{ value: string; } |
Returns: Promise<{ value: string; }>
getFirmware() => Promise<{ firmware: number[]; }>Gets RFID UHF reader firmware.
Returns: Promise<{ firmware: number[]; }>
Since: 1.0.0
startInventory(options: { value: string; }) => Promise<{ uhfData: string[]; }>Starts RFID UHF inventory.
| Param | Type |
|---|---|
options |
{ value: string; } |
Returns: Promise<{ uhfData: string[]; }>
Since: 1.0.0
stopInventory() => Promise<boolean>Stops RFID UHF inventory.
Returns: Promise<boolean>
Since: 1.0.0
setOutputPower(options: { value: number; }) => Promise<number>Sets RFID UHF output power.
| Param | Type |
|---|---|
options |
{ value: number; } |
Returns: Promise<number>
Since: 1.0.0
scanBarcode() => Promise<{ barcodeData: string; }>Starts scanning barcode with 1D Scanner.
Returns: Promise<{ barcodeData: string; }>
Since: 1.0.0