Skip to main content

getHardwareDescription()

Returns a string containing a human-readable description of the connected Aila hardware (e.g. IK 10.2 Gen 7/8/9, IK 12.9 Gen 4/5).

AilaCordovaPlugin.getHardwareDescription()

Returns

Promise that resolves with a string describing the connected hardware.

Example

AilaCordovaPlugin.getHardwareDescription()
.then((description) => {
console.log('Connected Hardware:', description);
});