wangmengmeng
2024-12-24 24432a361d5c6bd6f3d8c008693e9f1155d62517
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package com.dji.sample.control.service;
 
import com.dji.sample.control.model.enums.DroneAuthorityEnum;
import com.dji.sample.control.model.enums.RemoteDebugMethodEnum;
import com.dji.sample.control.model.param.*;
import com.dji.sdk.common.HttpResultResponse;
 
/**
 * @author sean
 * @version 1.2
 * @date 2022/7/29
 */
public interface IControlService {
 
    /**
     * Remotely debug the dock via commands.
     * @param sn
     * @param serviceIdentifier
     * @param param
     * @return
     */
    HttpResultResponse controlDockDebug(String sn, RemoteDebugMethodEnum serviceIdentifier, RemoteDebugParam param);
 
    /**
     * Make the drone fly to the target point.
     * @param sn
     * @param param
     * @return
     */
    HttpResultResponse flyToPoint(String sn, FlyToPointParam param);
 
    /**
     * End the mission of flying the drone to the target point.
     * @param sn
     * @return
     */
    HttpResultResponse flyToPointStop(String sn);
 
    /**
     * Handle progress result notifications for fly to target point.
     * @param receiver
     * @param headers
     * @return
     */
//    CommonTopicReceiver handleFlyToPointProgress(CommonTopicReceiver receiver, MessageHeaders headers);
 
    /**
     * Control the drone to take off.
     * @param sn
     * @param param
     * @return
     */
    HttpResultResponse takeoffToPoint(String sn, TakeoffToPointParam param);
 
    /**
     * Seize the control authority of the drone or the payload control authority.
     * @param sn
     * @param authority
     * @param param
     * @return
     */
    HttpResultResponse seizeAuthority(String sn, DroneAuthorityEnum authority, DronePayloadParam param);
 
    /**
     * Control the payload of the drone.
     * @param param
     * @return
     */
    HttpResultResponse payloadCommands(PayloadCommandsParam param) throws Exception;
 
    /**
     * cameraFrameZoom.
     * @param sn
     * @return
     */
//    HttpResultResponse cameraFrameZoom(String sn, CameraFrameZoomParam param);
 
    /**
     * cameraModeSwitch.
     * @param sn
     * @return
     */
    HttpResultResponse cameraModeSwitch(String sn, CameraModeSwitchParam param);
 
    /**
     * cameraPhotoTake.
     * @param sn
     * @return
     */
    HttpResultResponse cameraPhotoTake(String sn, CameraPhotoTakeParam param);
 
    /**
     * cameraPhotoStop.
     * @param sn
     * @return
     */
    HttpResultResponse cameraPhotoStop(String sn, CameraPhotoStopParam param);
 
    /**
     * cameraRecordingStart.
     * @param sn
     * @return
     */
    HttpResultResponse cameraRecordingStart(String sn, CameraRecordingStartParam param);
 
    /**
     * cameraRecordingStop.
     * @param sn
     * @return
     */
    HttpResultResponse cameraRecordingStop(String sn, CameraRecordingStopParam param);
 
    /**
     * cameraScreenDrag.
     * @param sn
     * @return
     */
//    HttpResultResponse cameraScreenDrag(String sn, CameraScreenDragParam param);
 
    /**
     * cameraFocalLengthSet.
     * @param sn
     * @return
     */
    HttpResultResponse cameraFocalLengthSet(String sn, CameraFocalLengthSetParam param);
 
    /**
     * gimbalReset.
     * @param sn
     * @return
     */
    HttpResultResponse gimbalReset(String sn, GimbalResetParam param);
 
    /**
     * cameraScreenSplit.
     * @param sn
     * @return
     */
    HttpResultResponse cameraScreenSplit(String sn, CameraScreenSplitParam param);
 
    /**
     * photoStorageSet.
     * @param sn
     * @return
     */
    HttpResultResponse photoStorageSet(String sn, PhotoStorageSetParam param);
 
    /**
     * videoStorageSet.
     * @param sn
     * @return
     */
    HttpResultResponse videoStorageSet(String sn, VideoStorageSetParam param);
 
    /**
     * cameraExposureModeSet.
     * @param sn
     * @return
     */
    HttpResultResponse cameraExposureModeSet(String sn, CameraExposureModeSetParam param);
 
    /**
     * cameraExposureSet.
     * @param sn
     * @return
     */
    HttpResultResponse cameraExposureSet(String sn, CameraExposureSetParam param);
 
    /**
     * cameraFocusModeSet.
     * @param sn
     * @return
     */
    HttpResultResponse cameraFocusModeSet(String sn, CameraFocusModeSetParam param);
 
    /**
     * cameraFocusValueSet.
     * @param sn
     * @return
     */
    HttpResultResponse cameraFocusValueSet(String sn, CameraFocusValueSetParam param);
 
    /**
     * cameraPointFocusAction.
     * @param sn
     * @return
     */
    HttpResultResponse cameraPointFocusAction(String sn, CameraPointFocusActionParam param);
 
    /**
     * irMeteringModeSet.
     * @param sn
     * @return
     */
    HttpResultResponse irMeteringModeSet(String sn, IrMeteringModeSetParam param);
 
    /**
     * irMeteringPointSet.
     * @param sn
     * @return
     */
    HttpResultResponse irMeteringPointSet(String sn, IrMeteringPointSetParam param);
 
    /**
     * irMeteringAreaSet.
     * @param sn
     * @return
     */
    HttpResultResponse irMeteringAreaSet(String sn, IrMeteringAreaSetParam param);
 
    /**
     * flyToPointUpdate.
     * @param sn
     * @return
     */
    HttpResultResponse flyToPointUpdate(String sn, FlyToPointUpdateParam param);
 
    /**
     * cameraAim.
     * @param sn
     * @return
     */
    HttpResultResponse cameraAim(String sn, CameraAimParam param);
 
    /**
     * cameraLookAt.
     * @param sn
     * @return
     */
    HttpResultResponse cameraLookAt(String sn, CameraLookAtParam param);
}