var BLicon {
iconColor = function () {
if (BLEscanner.blEnabled().Promise.isFulfilled())
return '#606060'; //the icon displayed is gray
else return '#030303';
};
msg = function () {
if (BLEscanner.blEnabled().Promise.isFulfilled())
return "Bluetooth is ON";
else return "Bluetooth is OFF";
}
}