React Native SDK
OTA
检查是否可以更新

检查 OTA

当前仅蓝牙通道支持。firmwareTypeMCUModule

const firmwareType = 'MCU';
const result = await device.bleCapability.checkUpdate(firmwareType);
if (result.success && result.data?.downloadUrl) {
  console.log(result.data.softVersion);
}