feat:增加32bit设备uuid判断

This commit is contained in:
liyi 2025-03-07 11:14:14 +08:00
parent eb0a3cda0f
commit 2612b3ca47

View File

@ -37,6 +37,9 @@ export async function searchDevice(callback) {
if (uuid && uuid.slice(2, 8) === '758824' && uuid.slice(30, 32) === '00') {
list.push(deviceList[i])
}
if (uuid && uuid.slice(0, 2) === '75' && uuid.slice(4, 6) === '00') {
list.push(deviceList[i])
}
}
}