[DJI MSDK] Is there any way to know the L1 camera Preheating status?
Completed[DJI MSDK]
addPointCloudStatusListener
-> onIMUPreHeatStatusChange
-> onIMUPreHeatStatusChange Event : check the L1 camera preheating status.
※However, since the ("PREHEATING","PREHEAT_COMPLETED" ) event occurs only once, the status of the event cannot be known after the drone is activated.
Is there any way to know the L1 camera preheating value?
--------------------------------------------------------------------------
Lidar().addPointCloudStatusListener(new Lidar.DJIPointCloudStatusListener() {
@Override
public void onPointCloudRecordStatusChange(RecordingStatus recordingStatus) {
}
@Override
public void onPointCloudRecordStatusRecordingTimeChange(long l) {
}
@Override
public void onIMUPreHeatStatusChange(DJILidarIMUPreheatStatus djiLidarIMUPreheatStatus) {
switch (djiLidarIMUPreheatStatus) {
case PREHEATING:
break;
case PREHEAT_COMPLETED:
break;
}
}
});
Please sign in to leave a comment.
Comments
3 comments