@kduma-autoid/capacitor-bluetooth-printer
v0.2.1
Published
Allows printing on SPP BT printers
Downloads
257
Readme
@kduma-autoid/capacitor-bluetooth-printer
Allows printing on SPP BT printers
Install
npm install @kduma-autoid/capacitor-bluetooth-printer
npx cap syncAPI
list()
list() => Promise<{ devices: BluetoothDevice[]; }>Returns: Promise<{ devices: BluetoothDevice[]; }>
connect(...)
connect(options: { address: string; }) => Promise<void>| Param | Type |
| ------------- | --------------------------------- |
| options | { address: string; } |
print(...)
print(options: { data: string; }) => Promise<void>| Param | Type |
| ------------- | ------------------------------ |
| options | { data: string; } |
disconnect()
disconnect() => Promise<void>connectAndPrint(...)
connectAndPrint(options: { address: string; data: string; }) => Promise<void>| Param | Type |
| ------------- | ----------------------------------------------- |
| options | { address: string; data: string; } |
Type Aliases
BluetoothDevice
{ name: string, address: string, type: BluetoothDeviceType }
Enums
BluetoothDeviceType
| Members | Value |
| ------------- | ---------------------- |
| Unknown | "unknown" |
| Classic | "classic" |
| Le | "le" |
| Dual | "dual" |
