获取芯片列表
获取当前已连接到电脑的 USB 控制芯片列表。
接口说明
接口类型
getChipboards参数
无需参数。
返回值
返回芯片序列号数组:
javascript
[
"序列号",
"序列号",
"序列号"
]基本使用
javascript
// 获取已连接的芯片列表
const chipboards = await apiInvoke('getChipboards');
console.log(`已连接 ${chipboards.length} 个芯片:`);
chipboards.forEach((serialId, index) => {
console.log(`${index + 1}. ${serialId}`);
});