Bind USB Device
Bind device to specified USB chip, establishing association between device and chip.
Interface Description
Interface Type
bindChipboardParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| deviceId | string | Yes | Device ID |
| serialId | string | Yes | USB chip serial number |
Return Value
javascript
true // Returns true on successful bindingBasic Usage
javascript
// Bind device to specified chip
await apiInvoke('bindChipboard', {
deviceId: 'P72578581E07',
serialId: 'TEST_SERIALID'
});
console.log('Device successfully bound to chip');Feature Description
Binding Purpose
After device is bound to chip:
- 🎮 Hardware Control - Implement hardware-level device control through chip
- 📱 Simulate Operations - Simulate real touch and key operations
- 🔄 Auto Screen Mirroring - Work with shortcuts to implement automatic online screen mirroring
Binding Relationship
- One-to-One Binding - One device can only bind to one chip
- Chip Exclusive - One chip can only bind to one device
- Persistent Save - Binding relationship is persistently saved
- Auto Initialize - Chip automatically initializes device configuration after binding