Skip to main content

getFirmwareVersionNumber()

Returns a string containing the firmware version of connected Aila hardware.

This value is for diagnostic purposes to verify that the firmware is up to date.

AilaCordovaPlugin.getFirmwareVersionNumber()

Returns

Promise that resolves with a string containing the firmware version.

Example

AilaCordovaPlugin.getFirmwareVersionNumber()
.then((firmwareVersion) => {
console.log('Firmware Version:', firmwareVersion);
});