React Native SDK
OTA
Check for Update

Check OTA

Currently supported on BLE only. firmwareType is MCU or Module.

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