Skip to content

Commit 8e61053

Browse files
committed
refactor
1 parent 41dac4c commit 8e61053

13 files changed

+8
-8
lines changed

dev/camera_control.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pygame
2-
from siyi_sdk_src import SIYISDK
2+
from siyi_sdk import SIYISDK
33
import time
44

55
class CameraControl:

dev/check_gimbal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from time import sleep
2-
from siyi_sdk_src import SIYISDK
2+
from siyi_sdk import SIYISDK
33

44
def test():
55
cam = SIYISDK(server_ip="192.168.144.25", port=37260, debug=True)

dev/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from siyi_sdk_src.siyi_message import SIYIMESSAGE
2-
from siyi_sdk_src.utils import *
1+
from siyi_sdk.siyi_message import SIYIMESSAGE
2+
from siyi_sdk.utils import *
33

44
if __name__=="__main__":
55
# msg = SIYIMESSAGE(debug=True)

dev/zoom_absolute.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
import os
33
from time import sleep
4-
from siyi_sdk_src import SIYISDK
4+
from siyi_sdk import SIYISDK
55

66
def test():
77
cam = SIYISDK(server_ip="192.168.144.25", port=37260, debug=True)

dev/zoom_control.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
import os
33
from time import sleep
4-
from siyi_sdk_src import SIYISDK
4+
from siyi_sdk import SIYISDK
55

66
def test():
77
cam = SIYISDK(server_ip="192.168.144.25", port=37260)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/test_center_gimbal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys
1010
import os
1111
from time import sleep
12-
from siyi_sdk_src import SIYISDK
12+
from siyi_sdk import SIYISDK
1313

1414
def test():
1515
cam = SIYISDK(server_ip="192.168.144.25", port=37260)

tests/test_follow_mode.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import os
1111
from time import sleep
1212

13-
from siyi_sdk_src import SIYISDK
13+
from siyi_sdk import SIYISDK
1414

1515
def test():
1616
cam = SIYISDK(server_ip="192.168.144.25", port=37260)

0 commit comments

Comments
 (0)