if (DeviceSettings has :requiresBurnInProtection) {
if (System has :getDisplayMode) {
switch (System.getDisplayMode()) {
case System.DISPLAY_MODE_HIGH_POWER:
break;
case System.DISPLAY_MODE_LOW_POWER:
_drawAod(dc);
return;
case System.DISPLAY_MODE_OFF:
return;
}
} else if (System.getDeviceSettings().requiresBurnInProtection) {
// Guide says use this to detect low-power mode on original Venu
_drawAod(dc);
return;
}
}
// render full watch face