Get Device Property

BatteryLevel batteryLevel = theta.getBatteryLevel();
WhiteBalance whiteBalance = theta.getWhiteBalance();
ISOSpeed iSOSpeed = theta.getExposureIndex();
ExposureBiasCompensation ebc = theta.getExposureBiasCompensation();
Date date = theta.getDateTime();
StillCaptureMode scm = getStillCaptureMode();
...

Set Device Property

theta.setWhiteBalance(WhiteBalance.AUTO);
theta.setDateTime(new Date());
...