OSDN Git Service

OPCで現在のカメラ設定値を表示できるようにする。ライブビューをVGA基準にする。
[gokigen/Gr2Control.git] / app / src / main / java / net / osdn / gokigen / gr2control / liveview / ICameraStatusUpdateNotify.java
1 package net.osdn.gokigen.gr2control.liveview;
2
3 /**
4  *
5  *
6  */
7 public interface ICameraStatusUpdateNotify
8 {
9     void updatedTakeMode(String mode);
10     void updatedShutterSpeed(String tv);
11     void updatedAperture(String av);
12     void updatedExposureCompensation(String xv);
13     void updatedMeteringMode(String meteringMode);
14     void updatedWBMode(String wbMode);
15     void updateRemainBattery(int percentage);
16
17     void updateIsoSensitivity(String sv);
18     void updateWarning(String warning);
19     void updateStorageStatus(String status);
20 }