forked from mzahana/siyi_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
siyi_sdk.py
820 lines (666 loc) · 24.4 KB
/
siyi_sdk.py
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
"""
Python implementation of SIYI SDK
ZR10 webpage: http://en.siyi.biz/en/Gimbal%20Camera/ZR10/overview/
Author : Mohamed Abdelkader
Email: [email protected]
Copyright 2022
"""
import socket
from siyi_message import *
from time import sleep, time
import logging
from utils import toInt
import threading
class SIYISDK:
def __init__(self, server_ip="192.168.144.25", port=37260, debug=False):
"""
Params
--
- server_ip [str] IP address of the camera
- port: [int] UDP port of the camera
"""
self._debug= debug # print debug messages
if self._debug:
d_level = logging.DEBUG
else:
d_level = logging.INFO
LOG_FORMAT=' [%(levelname)s] %(asctime)s [SIYISDK::%(funcName)s] :\t%(message)s'
logging.basicConfig(format=LOG_FORMAT, level=d_level)
self._logger = logging.getLogger(self.__class__.__name__)
# Message sent to the camera
self._out_msg = SIYIMESSAGE(debug=self._debug)
# Message received from the camera
self._in_msg = SIYIMESSAGE(debug=self._debug)
self._server_ip = server_ip
self._port = port
self._BUFF_SIZE=1024
self._socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self._rcv_wait_t = 2 # Receiving wait time
self._socket.settimeout(self._rcv_wait_t)
self._connected = False
self._fw_msg = FirmwareMsg()
self._hw_msg = HardwareIDMsg()
self._autoFocus_msg = AutoFocusMsg()
self._manualZoom_msg=ManualZoomMsg()
self._manualFocus_msg=ManualFocusMsg()
self._gimbalSpeed_msg=GimbalSpeedMsg()
self._center_msg=CenterMsg()
self._record_msg=RecordingMsg()
self._mountDir_msg=MountDirMsg()
self._motionMode_msg=MotionModeMsg()
self._funcFeedback_msg=FuncFeedbackInfoMsg()
self._att_msg=AttitdueMsg()
self._last_att_seq=-1
# Stop threads
self._stop = False # used to stop the above thread
self._recv_thread = threading.Thread(target=self.recvLoop)
# Connection thread
self._last_fw_seq=0 # used to check on connection liveness
self._conn_loop_rate = 1 # seconds
self._conn_thread = threading.Thread(target=self.connectionLoop, args=(self._conn_loop_rate,))
# Gimbal info thread @ 1Hz
self._gimbal_info_loop_rate = 1
self._g_info_thread = threading.Thread(target=self.gimbalInfoLoop,
args=(self._gimbal_info_loop_rate,))
# Gimbal attitude thread @ 10Hz
self._gimbal_att_loop_rate = 0.1
self._g_att_thread = threading.Thread(target=self.gimbalAttLoop,
args=(self._gimbal_att_loop_rate,))
def resetVars(self):
"""
Resets variables to their initial values. For example, to prepare for a fresh connection
"""
self._connected = False
self._fw_msg = FirmwareMsg()
self._hw_msg = HardwareIDMsg()
self._autoFocus_msg = AutoFocusMsg()
self._manualZoom_msg=ManualZoomMsg()
self._manualFocus_msg=ManualFocusMsg()
self._gimbalSpeed_msg=GimbalSpeedMsg()
self._center_msg=CenterMsg()
self._record_msg=RecordingMsg()
self._mountDir_msg=MountDirMsg()
self._motionMode_msg=MotionModeMsg()
self._funcFeedback_msg=FuncFeedbackInfoMsg()
self._att_msg=AttitdueMsg()
return True
def connect(self, maxWaitTime=3.0):
"""
Makes sure there is conenction with the camera before doing anything.
It requests Frimware version for some time before it gives up
Params
--
maxWaitTime [int] Maximum time to wait before giving up on connection
"""
self._recv_thread.start()
self._conn_thread.start()
t0 = time()
while(True):
if self._connected:
self._g_info_thread.start()
self._g_att_thread.start()
return True
if (time() - t0)>maxWaitTime and not self._connected:
self.disconnect()
self._logger.error("Failed to connect to camera")
return False
def disconnect(self):
self._logger.info("Stopping all threads")
self._stop = True # stop the connection checking thread
self.resetVars()
def checkConnection(self):
"""
checks if there is live connection to the camera by requesting the Firmware version.
This function is to be run in a thread at a defined frequency
"""
self.requestFirmwareVersion()
sleep(0.1)
if self._fw_msg.seq!=self._last_fw_seq and len(self._fw_msg.gimbal_firmware_ver)>0:
self._connected = True
self._last_fw_seq=self._fw_msg.seq
else:
self._connected = False
def connectionLoop(self, t):
"""
This function is used in a thread to check connection status periodically
Params
--
t [float] message frequency, secnod(s)
"""
while(True):
if self._stop:
self._connected=False
self.resetVars()
self._logger.warning("Connection checking loop is stopped. Check your connection!")
break
self.checkConnection()
sleep(t)
def isConnected(self):
return self._connected
def gimbalInfoLoop(self, t):
"""
This function is used in a thread to get gimbal info periodically
Params
--
t [float] message frequency, secnod(s)
"""
while(True):
if not self._connected:
self._logger.warning("Gimbal info thread is stopped. Check connection")
break
self.requestGimbalInfo()
sleep(t)
def gimbalAttLoop(self, t):
"""
This function is used in a thread to get gimbal attitude periodically
Params
--
t [float] message frequency, secnod(s)
"""
while(True):
if not self._connected:
self._logger.warning("Gimbal attitude thread is stopped. Check connection")
break
self.requestGimbalAttitude()
sleep(t)
def sendMsg(self, msg):
"""
Sends a message to the camera
Params
--
msg [str] Message to send
"""
b = bytes.fromhex(msg)
try:
self._socket.sendto(b, (self._server_ip, self._port))
return True
except Exception as e:
self._logger.error("Could not send bytes")
return False
def rcvMsg(self):
data=None
try:
data,addr = self._socket.recvfrom(self._BUFF_SIZE)
except Exception as e:
self._logger.warning("%s. Did not receive message within %s second(s)", e, self._rcv_wait_t)
return data
def recvLoop(self):
self._logger.debug("Started data receiving thread")
while( not self._stop):
self.bufferCallback()
self._logger.debug("Exiting data receiving thread")
def bufferCallback(self):
"""
Receives messages and parses its content
"""
buff,addr = self._socket.recvfrom(self._BUFF_SIZE)
buff_str = buff.hex()
self._logger.debug("Buffer: %s", buff_str)
# 10 bytes: STX+CTRL+Data_len+SEQ+CMD_ID+CRC16
# 2 + 1 + 2 + 2 + 1 + 2
MINIMUM_DATA_LENGTH=10*2
HEADER='5566'
# Go through the buffer
while(len(buff_str)>=MINIMUM_DATA_LENGTH):
if buff_str[0:4]!=HEADER:
# Remove the 1st element and continue
tmp=buff_str[1:]
buff_str=tmp
continue
# Now we got minimum amount of data. Check if we have enough
# Data length, bytes are reversed, according to SIYI SDK
low_b = buff_str[6:8] # low byte
high_b = buff_str[8:10] # high byte
data_len = high_b+low_b
data_len = int('0x'+data_len, base=16)
char_len = data_len*2
# Check if there is enough data (including payload)
if(len(buff_str) < (MINIMUM_DATA_LENGTH+char_len)):
# No useful data
buff_str=''
break
packet = buff_str[0:MINIMUM_DATA_LENGTH+char_len]
buff_str = buff_str[MINIMUM_DATA_LENGTH+char_len:]
# Finally decode the packet!
val = self._in_msg.decodeMsg(packet)
if val is None:
continue
data, data_len, cmd_id, seq = val[0], val[1], val[2], val[3]
if cmd_id==COMMAND.ACQUIRE_FW_VER:
self.parseFirmwareMsg(data, seq)
elif cmd_id==COMMAND.ACQUIRE_HW_ID:
self.parseHardwareIDMsg(data, seq)
elif cmd_id==COMMAND.ACQUIRE_GIMBAL_INFO:
self.parseGimbalInfoMsg(data, seq)
elif cmd_id==COMMAND.ACQUIRE_GIMBAL_ATT:
self.parseAttitudeMsg(data, seq)
elif cmd_id==COMMAND.FUNC_FEEDBACK_INFO:
self.parseFunctionFeedbackMsg(data, seq)
elif cmd_id==COMMAND.GIMBAL_ROT:
self.parseGimbalSpeedMsg(data, seq)
elif cmd_id==COMMAND.AUTO_FOCUS:
self.parseAutoFocusMsg(data, seq)
elif cmd_id==COMMAND.MANUAL_FOCUS:
self.parseManualFocusMsg(data, seq)
elif cmd_id==COMMAND.MANUAL_ZOOM:
self.parseZoomMsg(data, seq)
elif cmd_id==COMMAND.CENTER:
self.parseGimbalCenterMsg(data, seq)
else:
self._logger.warning("CMD ID is not recognized")
return
##################################################
# Request functions #
##################################################
def requestFirmwareVersion(self):
"""
Sends request for firmware version
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.firmwareVerMsg()
if not self.sendMsg(msg):
return False
return True
def requestHardwareID(self):
"""
Sends request for Hardware ID
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.hwIdMsg()
if not self.sendMsg(msg):
return False
return True
def requestGimbalAttitude(self):
"""
Sends request for gimbal attitude
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.gimbalAttMsg()
if not self.sendMsg(msg):
return False
return True
def requestGimbalInfo(self):
"""
Sends request for gimbal information
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.gimbalInfoMsg()
if not self.sendMsg(msg):
return False
return True
def requestFunctionFeedback(self):
"""
Sends request for function feedback msg
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.funcFeedbackMsg()
if not self.sendMsg(msg):
return False
return True
def requestAutoFocus(self):
"""
Sends request for auto focus
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.autoFocusMsg()
if not self.sendMsg(msg):
return False
return True
def requestZoomIn(self):
"""
Sends request for zoom in
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.zoomInMsg()
if not self.sendMsg(msg):
return False
return True
def requestZoomOut(self):
"""
Sends request for zoom out
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.zoomOutMsg()
if not self.sendMsg(msg):
return False
return True
def requestZoomHold(self):
"""
Sends request for stopping zoom
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.stopZoomMsg()
if not self.sendMsg(msg):
return False
return True
def requestLongFocus(self):
"""
Sends request for manual focus, long shot
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.longFocusMsg()
if not self.sendMsg(msg):
return False
return True
def requestCloseFocus(self):
"""
Sends request for manual focus, close shot
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.closeFocusMsg()
if not self.sendMsg(msg):
return False
return True
def requestFocusHold(self):
"""
Sends request for manual focus, stop
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.stopFocusMsg()
if not self.sendMsg(msg):
return False
return True
def requestCenterGimbal(self):
"""
Sends request for gimbal centering
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.centerMsg()
if not self.sendMsg(msg):
return False
return True
def requestGimbalSpeed(self, yaw_speed:int, pitch_speed:int):
"""
Sends request for gimbal centering
Params
--
yaw_speed [int] -100~0~100. away from zero -> fast, close to zero -> slow. Sign is for direction
pitch_speed [int] Same as yaw_speed
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.gimbalSpeedMsg(yaw_speed, pitch_speed)
if not self.sendMsg(msg):
return False
return True
def requestPhoto(self):
"""
Sends request for taking photo
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.takePhotoMsg()
if not self.sendMsg(msg):
return False
return True
def requestRecording(self):
"""
Sends request for toglling video recording
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.recordMsg()
if not self.sendMsg(msg):
return False
return True
def requestFPVMode(self):
"""
Sends request for setting FPV mode
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.fpvModeMsg()
if not self.sendMsg(msg):
return False
return True
def requestLockMode(self):
"""
Sends request for setting Lock mode
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.lockModeMsg()
if not self.sendMsg(msg):
return False
return True
def requestFollowMode(self):
"""
Sends request for setting Follow mode
Returns
--
[bool] True: success. False: fail
"""
msg = self._out_msg.followModeMsg()
if not self.sendMsg(msg):
return False
return True
####################################################
# Parsing functions #
####################################################
def parseFirmwareMsg(self, msg:str, seq:int):
try:
self._fw_msg.gimbal_firmware_ver= msg[8:16]
self._fw_msg.seq=seq
self._logger.debug("Firmware version: %s", self._fw_msg.gimbal_firmware_ver)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseHardwareIDMsg(self, msg:str, seq:int):
try:
self._hw_msg.seq=seq
self._hw_msg.id = msg
self._logger.debug("Hardware ID: %s", self._hw_msg.id)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseAttitudeMsg(self, msg:str, seq:int):
try:
self._att_msg.seq=seq
self._att_msg.yaw = toInt(msg[2:4]+msg[0:2]) /10.
self._att_msg.pitch = toInt(msg[6:8]+msg[4:6]) /10.
self._att_msg.roll = toInt(msg[10:12]+msg[8:10]) /10.
self._att_msg.yaw_speed = toInt(msg[14:16]+msg[12:14]) /10.
self._att_msg.pitch_speed = toInt(msg[18:20]+msg[16:18]) /10.
self._att_msg.roll_speed = toInt(msg[22:24]+msg[20:22]) /10.
self._logger.debug("(yaw, pitch, roll= (%s, %s, %s)",
self._att_msg.yaw, self._att_msg.pitch, self._att_msg.roll)
self._logger.debug("(yaw_speed, pitch_speed, roll_speed= (%s, %s, %s)",
self._att_msg.yaw_speed, self._att_msg.pitch_speed, self._att_msg.roll_speed)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseGimbalInfoMsg(self, msg:str, seq:int):
try:
self._record_msg.seq=seq
self._mountDir_msg.seq=seq
self._motionMode_msg.seq=seq
self._record_msg.state = int('0x'+msg[6:8], base=16)
self._motionMode_msg.mode = int('0x'+msg[8:10], base=16)
self._mountDir_msg.dir = int('0x'+msg[10:12], base=16)
self._logger.debug("Recording state %s", self._record_msg.state)
self._logger.debug("Mounting direction %s", self._mountDir_msg.dir)
self._logger.debug("Gimbal motion mode %s", self._motionMode_msg.mode)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseAutoFocusMsg(self, msg:str, seq:int):
try:
self._autoFocus_msg.seq=seq
self._autoFocus_msg.success = bool(int('0x'+msg, base=16))
self._logger.debug("Auto focus success: %s", self._autoFocus_msg.success)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseZoomMsg(self, msg:str, seq:int):
try:
self._manualZoom_msg.seq=seq
self._manualZoom_msg.level = int('0x'+msg[2:4]+msg[0:2], base=16) /10.
self._logger.debug("Zoom level %s", self._manualZoom_msg.level)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseManualFocusMsg(self, msg:str, seq:int):
try:
self._manualFocus_msg.seq=seq
self._manualFocus_msg.success = bool(int('0x'+msg, base=16))
self._logger.debug("Manual focus success: %s", self._manualFocus_msg.success)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseGimbalSpeedMsg(self, msg:str, seq:int):
try:
self._gimbalSpeed_msg.seq=seq
self._gimbalSpeed_msg.success = bool(int('0x'+msg, base=16))
self._logger.debug("Gimbal speed success: %s", self._gimbalSpeed_msg.success)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseGimbalCenterMsg(self, msg:str, seq:int):
try:
self._center_msg.seq=seq
self._center_msg.success = bool(int('0x'+msg, base=16))
self._logger.debug("Gimbal center success: %s", self._center_msg.success)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
def parseFunctionFeedbackMsg(self, msg:str, seq:int):
try:
self._funcFeedback_msg.seq=seq
self._funcFeedback_msg.info_type = int('0x'+msg, base=16)
self._logger.debug("Function Feedback Code: %s", self._funcFeedback_msg.info_type)
return True
except Exception as e:
self._logger.error("Error %s", e)
return False
##################################################
# Get functions #
##################################################
def getAttitude(self):
return(self._att_msg.yaw, self._att_msg.pitch, self._att_msg.roll)
def getAttitudeSpeed(self):
return(self._att_msg.yaw_speed, self._att_msg.pitch_speed, self._att_msg.roll_speed)
def getFirmwareVersion(self):
return(self._fw_msg.gimbal_firmware_ver)
def getHardwareID(self):
return(self._hw_msg.id)
def getRecordingState(self):
return(self._record_msg.state)
def getMotionMode(self):
return(self._motionMode_msg.mode)
def getMountingDirection(self):
return(self._mountDir_msg.dir)
def getFunctionFeedback(self):
return(self._funcFeedback_msg.info_type)
def getZoomLevel(self):
return(self._manualZoom_msg.level)
#################################################
# Set functions #
#################################################
def setGimbalRotation(self, yaw, pitch, err_thresh=1.0, kp=4):
"""
Sets gimbal attitude angles yaw and pitch in degrees
Params
--
yaw: [float] desired yaw in degrees
pitch: [float] desired pitch in degrees
err_thresh: [float] acceptable error threshold, in degrees, to stop correction
kp [float] proportional gain
"""
if (pitch >25 or pitch <-90):
self._logger.error("desired pitch is outside controllable range -90~25")
return
if (yaw >45 or yaw <-45):
self._logger.error("Desired yaw is outside controllable range -45~45")
return
th = err_thresh
gain = kp
while(True):
self.requestGimbalAttitude()
if self._att_msg.seq==self._last_att_seq:
self._logger.info("Did not get new attitude msg")
self.requestGimbalSpeed(0,0)
continue
self._last_att_seq = self._att_msg.seq
yaw_err = -yaw + self._att_msg.yaw # NOTE for some reason it's reversed!!
pitch_err = pitch - self._att_msg.pitch
self._logger.debug("yaw_err= %s", yaw_err)
self._logger.debug("pitch_err= %s", pitch_err)
if (abs(yaw_err) <= th and abs(pitch_err)<=th):
self.requestGimbalSpeed(0, 0)
self._logger.info("Goal rotation is reached")
break
y_speed_sp = max(min(100, int(gain*yaw_err)), -100)
p_speed_sp = max(min(100, int(gain*pitch_err)), -100)
self._logger.debug("yaw speed setpoint= %s", y_speed_sp)
self._logger.debug("pitch speed setpoint= %s", p_speed_sp)
self.requestGimbalSpeed(y_speed_sp, p_speed_sp)
sleep(0.1) # command frequency
def test():
cam=SIYISDK(debug=False)
if not cam.connect():
exit(1)
print("Firmware version: ", cam.getFirmwareVersion())
cam.requestGimbalSpeed(10,0)
sleep(3)
cam.requestGimbalSpeed(0,0)
print("Attitude: ", cam.getAttitude())
cam.requestCenterGimbal()
val=cam.getRecordingState()
print("Recording state: ",val)
cam.requestRecording()
sleep(0.1)
val=cam.getRecordingState()
print("Recording state: ",val)
cam.requestRecording()
sleep(0.1)
val=cam.getRecordingState()
print("Recording state: ",val)
print("Taking photo...")
cam.requestPhoto()
sleep(1)
print("Feedback: ", cam.getFunctionFeedback())
cam.setGimbalRotation(10,20, err_thresh=1, kp=4)
cam.setGimbalRotation(-10,-90, err_thresh=1, kp=4)
cam.disconnect()
if __name__=="__main__":
test()