diff --git a/CU/Catch.py b/CU/Catch.py index 8671f36..a7730ae 100644 --- a/CU/Catch.py +++ b/CU/Catch.py @@ -29,10 +29,6 @@ class Catch: self.shake_Q = False def run(self): if self.catch_status == CatchStatus.CNone: - self.shake_continue.SetReset() - # self.robotClient.sendIOControl(self.robotClient.con_ios[1], 0,emptyList='1') - close(0, 1, 0) - self.is_send_take_command = False return if self.catch_status == CatchStatus.CTake: diff --git a/CU/Detect.py b/CU/Detect.py index 271e7d7..162e08e 100644 --- a/CU/Detect.py +++ b/CU/Detect.py @@ -37,8 +37,9 @@ class Detect: return target_position, noraml_base = getPosition(*xyz, *uvw, None, points) + position = Real_Position().init_position(*target_position[:3], *noraml_base[:3]) - position.Z = position.Z + 200 + position.Z = position.Z self.detect_position = position self.detect_status = DetectStatus.DOk diff --git a/CU/Feeding.py b/CU/Feeding.py index 517471f..fc9d30b 100644 --- a/CU/Feeding.py +++ b/CU/Feeding.py @@ -19,7 +19,7 @@ from Model.Position import Real_Position, Detection_Position from enum import Enum, IntEnum from COM.COM_Robot import RobotClient, DetectType from Model.RobotModel import CMDInstructRequest, MoveType -from Trace.handeye_calibration import getxyz +from Trace.handeye_calibration import getPosition from Util.util_math import get_distance from Util.util_time import CRisOrFall from Vision.camera_coordinate_dete import Detection @@ -133,16 +133,15 @@ class FeedLine: for i in range(len(self.feeding_to_end)): if self.feeding_to_end[i].status == FeedStatus.FTake.value: if position != None: - xyz = getxyz(position.X, position.Y, position.Z, position.a, position.b, position.c) - befor_take_position = Real_Position().init_position(xyz[0], - xyz[1], - xyz[2], + befor_take_position = Real_Position().init_position(position.X, + position.Y, + position.Z+dynamic_height, position.U, position.V, position.W) - after_take_position = Real_Position().init_position(xyz[0], - xyz[1], - xyz[2], + after_take_position = Real_Position().init_position(position.X, + position.Y, + position.Z+dynamic_height, position.U, position.V, position.W) diff --git a/Config/FeedLine.ini b/Config/FeedLine.ini index f597b96..d56ccaf 100644 --- a/Config/FeedLine.ini +++ b/Config/FeedLine.ini @@ -59,12 +59,12 @@ status = 6 linetype = 0 [Position9] -x = 1430.492554 -y = 1765.717407 -z = 1832.536255 -u = 1.57702 -v = 4.174215 -w = -87.506783 +x = 1427.58313 +y = 1724.46875 +z = 1831.32312 +u = 1.923308 +v = 3.454441 +w = -87.299934 id = 9 order = 9 lineid = 1 @@ -72,12 +72,12 @@ status = 7 linetype = 0 [Position10] -x = 1375.01416 -y = 1702.021973 -z = 2117.369385 -u = 8.211453 -v = 4.232689 -w = -100.153625 +x = 1339.699585 +y = 1702.385742 +z = 2197.976318 +u = 9.554496 +v = 7.15853 +w = -99.243294 id = 10 order = 10 lineid = 1 @@ -202,12 +202,12 @@ status = 8 linetype = 0 [Position11] -x = 1244.785156 -y = 1848.819702 -z = 2307.201416 -u = -34.622036 -v = 19.413801 -w = -129.918442 +x = 1331.740112 +y = 1787.211548 +z = 2307.181641 +u = -34.621368 +v = 19.412609 +w = -132.657135 id = 11 order = 12 lineid = 1 diff --git a/Model/Position.py b/Model/Position.py index 31dcb48..7a89b59 100644 --- a/Model/Position.py +++ b/Model/Position.py @@ -10,6 +10,10 @@ class Position: self.U = 0.0 self.V = 0.0 self.W = 0.0 + self.a = 0.0 + self.b = 0.0 + self.c = 0.0 + def compare(self,position,is_action=False): distance = math.sqrt((self.X-position.X)**2+ diff --git a/Seting.ini b/Seting.ini index f7e4c14..38e6b71 100644 --- a/Seting.ini +++ b/Seting.ini @@ -59,9 +59,9 @@ smooth = 9 dynamic_height = 350.0 [Speed] -debug_speed = 50 -feed_speed = 550 -reset_speed = 35 +debug_speed = 80 +feed_speed = 100 +reset_speed = 80 [Origin] x = 204.996765 diff --git a/Trace/handeye_calibration.py b/Trace/handeye_calibration.py index 488bfc8..3be6314 100644 --- a/Trace/handeye_calibration.py +++ b/Trace/handeye_calibration.py @@ -76,7 +76,7 @@ def getPosition(x,y,z,a,b,c,rotation,points): # 单位化方向向量 short_edge_direction = edge_vector / np.linalg.norm(edge_vector) - delta = 0#沿法向量方向抬高和压低,-指表示抬高,+值表示压低 + delta = -200#沿法向量方向抬高和压低,-指表示抬高,+值表示压低 angle = np.asarray([a,b,c]) noraml = camera2robot[:3, :3]@angle normal_vector = noraml / np.linalg.norm(noraml) @@ -90,7 +90,7 @@ def getxyz(x,y,z,a,b,c): target = np.asarray([x, y, z, 1]) camera2robot = np.loadtxt('./Trace/com_pose2.txt', delimiter=' ') target_position_raw = np.dot(camera2robot, target) - delta = -200 # 沿法向量方向抬高和压低,-指表示抬高,+值表示压低 + delta = -500 # 沿法向量方向抬高和压低,-指表示抬高,+值表示压低 angle = np.asarray([a, b, c]) noraml = camera2robot[:3, :3] @ angle normal_vector = noraml / np.linalg.norm(noraml) diff --git a/log/log.log b/log/log.log index fff2057..6c2db95 100644 --- a/log/log.log +++ b/log/log.log @@ -10981,3 +10981,2239 @@ 2025-02-26 19:12:17 - INFO - IO: 20 2025-02-26 19:12:30 - INFO - ˳ϵͳ 2025-02-26 19:12:30 - ERROR - model +2025-02-27 10:50:50 - INFO - ϵͳ +2025-02-27 10:51:14 - INFO - ٶ80|100 +2025-02-27 10:51:14 - INFO - ٶ80|100 +2025-02-27 10:51:17 - INFO - ٶ80|100 +2025-02-27 10:51:17 - INFO - ٶ80|100 +2025-02-27 10:51:17 - INFO - ٶ80|100 +2025-02-27 10:51:18 - INFO - ٶ80|100 +2025-02-27 10:51:18 - INFO - ٶ80|100 +2025-02-27 10:51:22 - ERROR - ޻ظ +2025-02-27 10:51:22 - INFO - +2025-02-27 10:51:27 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-27 10:51:27 - INFO - л +2025-02-27 10:51:27 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 10:51:27 - INFO - лԶ״̬ +2025-02-27 10:51:27 - INFO - +2025-02-27 10:51:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:51:28 - INFO - ʼλ +2025-02-27 10:51:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 10:51:28 - ERROR - еδʵ·ߵƶδѰҵ·λ +2025-02-27 10:51:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:51:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 10:51:28 - INFO - IO: 21 +2025-02-27 10:51:28 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 10:51:28 - INFO - IO: 20 +2025-02-27 10:51:32 - INFO - һȷ +2025-02-27 10:51:32 - INFO - Ӧ1:ͶϿʼ +2025-02-27 10:51:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 10:51:32 - INFO - IO: 21 +2025-02-27 10:51:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 10:51:37 - INFO - IO: 20 +2025-02-27 10:51:37 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:51:37 - INFO - ͶϿʼ +2025-02-27 10:51:37 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 10:51:38 - INFO - ͶϿʼ +2025-02-27 10:51:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:51:38 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 10:51:40 - INFO - ƶλλ +2025-02-27 10:51:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:51:40 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 10:51:43 - INFO - ƶλλ +2025-02-27 10:51:43 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:51:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:51:44 - INFO - ǷȫͶ +2025-02-27 10:51:44 - INFO - ǷȫͶ +2025-02-27 10:51:44 - INFO - ǷȫͶ +2025-02-27 10:51:44 - INFO - ǷȫͶ +2025-02-27 10:51:44 - INFO - ǷȫͶ +2025-02-27 10:51:45 - INFO - ǷȫͶ +2025-02-27 10:51:45 - INFO - ǷȫͶ +2025-02-27 10:51:45 - INFO - ǷȫͶ +2025-02-27 10:51:45 - INFO - ǷȫͶ +2025-02-27 10:51:46 - INFO - ǷȫͶ +2025-02-27 10:51:46 - INFO - ǷȫͶ +2025-02-27 10:51:46 - INFO - ǷȫͶ +2025-02-27 10:51:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:51:46 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:51:46 - INFO - ǷȫͶ +2025-02-27 10:51:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:51:47 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:51:47 - INFO - ƶλ +2025-02-27 10:51:47 - INFO - ƶλ +2025-02-27 10:51:47 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:47 - INFO - ƶλ +2025-02-27 10:51:47 - INFO - ʶͼɹ +2025-02-27 10:51:47 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:47 - INFO - ƶλ +2025-02-27 10:51:47 - INFO - ʶͼɹ +2025-02-27 10:51:48 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:48 - INFO - ƶλ +2025-02-27 10:51:48 - INFO - ʶͼɹ +2025-02-27 10:51:48 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:48 - INFO - ƶλ +2025-02-27 10:51:48 - INFO - ʶͼɹ +2025-02-27 10:51:48 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:48 - INFO - ƶλ +2025-02-27 10:51:48 - INFO - ʶͼɹ +2025-02-27 10:51:49 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:49 - INFO - ƶλ +2025-02-27 10:51:49 - INFO - ʶͼɹ +2025-02-27 10:51:49 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:49 - INFO - ƶλ +2025-02-27 10:51:49 - INFO - ʶͼɹ +2025-02-27 10:51:49 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:49 - INFO - ƶλ +2025-02-27 10:51:49 - INFO - ʶͼɹ +2025-02-27 10:51:50 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:50 - INFO - ƶλ +2025-02-27 10:51:50 - INFO - ʶͼɹ +2025-02-27 10:51:50 - INFO - ƶλ +2025-02-27 10:51:50 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:50 - INFO - ʶͼɹ +2025-02-27 10:51:50 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:50 - INFO - ƶλ +2025-02-27 10:51:50 - INFO - ʶͼɹ +2025-02-27 10:51:51 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:51 - INFO - ƶλ +2025-02-27 10:51:51 - INFO - ʶͼɹ +2025-02-27 10:51:51 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:51 - INFO - ƶλ +2025-02-27 10:51:51 - INFO - ʶͼɹ +2025-02-27 10:51:51 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:51 - INFO - ƶλ +2025-02-27 10:51:51 - INFO - ʶͼɹ +2025-02-27 10:51:52 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:52 - INFO - ƶλ +2025-02-27 10:51:52 - INFO - ʶͼɹ +2025-02-27 10:51:52 - INFO - ƶλ +2025-02-27 10:51:52 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:52 - INFO - ʶͼɹ +2025-02-27 10:51:52 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:52 - INFO - ƶλ +2025-02-27 10:51:52 - INFO - ʶͼɹ +2025-02-27 10:51:53 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:53 - INFO - ƶλ +2025-02-27 10:51:53 - INFO - ʶͼɹ +2025-02-27 10:51:53 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:53 - INFO - ƶλ +2025-02-27 10:51:53 - INFO - ʶͼɹ +2025-02-27 10:51:53 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:53 - INFO - ƶλ +2025-02-27 10:51:53 - INFO - ʶͼɹ +2025-02-27 10:51:54 - INFO - ƶλ +2025-02-27 10:51:54 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:54 - INFO - ʶͼɹ +2025-02-27 10:51:54 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:54 - INFO - ƶλ +2025-02-27 10:51:54 - INFO - ʶͼɹ +2025-02-27 10:51:54 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:54 - INFO - ƶλ +2025-02-27 10:51:54 - INFO - ʶͼɹ +2025-02-27 10:51:55 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:55 - INFO - ƶλ +2025-02-27 10:51:55 - INFO - ʶͼɹ +2025-02-27 10:51:55 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:55 - INFO - ƶλ +2025-02-27 10:51:55 - INFO - ʶͼɹ +2025-02-27 10:51:55 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:55 - INFO - ƶλ +2025-02-27 10:51:55 - INFO - ʶͼɹ +2025-02-27 10:51:56 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:56 - INFO - ƶλ +2025-02-27 10:51:56 - INFO - ʶͼɹ +2025-02-27 10:51:56 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:56 - INFO - ƶλ +2025-02-27 10:51:56 - INFO - ʶͼɹ +2025-02-27 10:51:56 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:56 - INFO - ƶλ +2025-02-27 10:51:56 - INFO - ʶͼɹ +2025-02-27 10:51:57 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:57 - INFO - ƶλ +2025-02-27 10:51:57 - INFO - ʶͼɹ +2025-02-27 10:51:57 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:57 - INFO - ƶλ +2025-02-27 10:51:57 - INFO - ʶͼɹ +2025-02-27 10:51:57 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:57 - INFO - ƶλ +2025-02-27 10:51:57 - INFO - ʶͼɹ +2025-02-27 10:51:58 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:58 - INFO - ƶλ +2025-02-27 10:51:58 - INFO - ʶͼɹ +2025-02-27 10:51:58 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:58 - INFO - ƶλ +2025-02-27 10:51:58 - INFO - ʶͼɹ +2025-02-27 10:51:58 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:58 - INFO - ƶλ +2025-02-27 10:51:58 - INFO - ʶͼɹ +2025-02-27 10:51:59 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:59 - INFO - ƶλ +2025-02-27 10:51:59 - INFO - ʶͼɹ +2025-02-27 10:51:59 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:59 - INFO - ƶλ +2025-02-27 10:51:59 - INFO - ʶͼɹ +2025-02-27 10:51:59 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:51:59 - INFO - ƶλ +2025-02-27 10:51:59 - INFO - ʶͼɹ +2025-02-27 10:52:00 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:00 - INFO - ƶλ +2025-02-27 10:52:00 - INFO - ʶͼɹ +2025-02-27 10:52:00 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:00 - INFO - ƶλ +2025-02-27 10:52:00 - INFO - ʶͼɹ +2025-02-27 10:52:00 - INFO - ƶλ +2025-02-27 10:52:00 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:00 - INFO - ʶͼɹ +2025-02-27 10:52:01 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:01 - INFO - ƶλ +2025-02-27 10:52:01 - INFO - ʶͼɹ +2025-02-27 10:52:01 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:01 - INFO - ƶλ +2025-02-27 10:52:01 - INFO - ʶͼɹ +2025-02-27 10:52:01 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:01 - INFO - ƶλ +2025-02-27 10:52:01 - INFO - ʶͼɹ +2025-02-27 10:52:02 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:02 - INFO - ƶλ +2025-02-27 10:52:02 - INFO - ʶͼɹ +2025-02-27 10:52:02 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:02 - INFO - ƶλ +2025-02-27 10:52:02 - INFO - ʶͼɹ +2025-02-27 10:52:02 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:02 - INFO - ƶλ +2025-02-27 10:52:02 - INFO - ʶͼɹ +2025-02-27 10:52:03 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:03 - INFO - ƶλ +2025-02-27 10:52:03 - INFO - ʶͼɹ +2025-02-27 10:52:03 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:03 - INFO - ƶλ +2025-02-27 10:52:03 - INFO - ʶͼɹ +2025-02-27 10:52:03 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:03 - INFO - ƶλ +2025-02-27 10:52:03 - INFO - ʶͼɹ +2025-02-27 10:52:04 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:04 - INFO - ƶλ +2025-02-27 10:52:04 - INFO - ʶͼɹ +2025-02-27 10:52:04 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:04 - INFO - ƶλ +2025-02-27 10:52:04 - INFO - ʶͼɹ +2025-02-27 10:52:04 - INFO - ƶλ +2025-02-27 10:52:04 - INFO - ʶͼɹ +2025-02-27 10:52:04 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:05 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:05 - INFO - ƶλ +2025-02-27 10:52:05 - INFO - ʶͼɹ +2025-02-27 10:52:05 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:05 - INFO - ƶλ +2025-02-27 10:52:05 - INFO - ʶͼɹ +2025-02-27 10:52:05 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:05 - INFO - ƶλ +2025-02-27 10:52:05 - INFO - ʶͼɹ +2025-02-27 10:52:06 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:06 - INFO - ƶλ +2025-02-27 10:52:06 - INFO - ʶͼɹ +2025-02-27 10:52:06 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:06 - INFO - ƶλ +2025-02-27 10:52:06 - INFO - ʶͼɹ +2025-02-27 10:52:06 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:06 - INFO - ƶλ +2025-02-27 10:52:06 - INFO - ʶͼɹ +2025-02-27 10:52:07 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:07 - INFO - ƶλ +2025-02-27 10:52:07 - INFO - ʶͼɹ +2025-02-27 10:52:07 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:07 - INFO - ƶλ +2025-02-27 10:52:07 - INFO - ʶͼɹ +2025-02-27 10:52:07 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:07 - INFO - ƶλ +2025-02-27 10:52:07 - INFO - ʶͼɹ +2025-02-27 10:52:08 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:08 - INFO - ƶλ +2025-02-27 10:52:08 - INFO - ʶͼɹ +2025-02-27 10:52:08 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:08 - INFO - ƶλ +2025-02-27 10:52:08 - INFO - ʶͼɹ +2025-02-27 10:52:08 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:08 - INFO - ƶλ +2025-02-27 10:52:08 - INFO - ʶͼɹ +2025-02-27 10:52:09 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:09 - INFO - ƶλ +2025-02-27 10:52:09 - INFO - ʶͼɹ +2025-02-27 10:52:09 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:09 - INFO - ƶλ +2025-02-27 10:52:09 - INFO - ʶͼɹ +2025-02-27 10:52:09 - INFO - ƶλ +2025-02-27 10:52:09 - INFO - ʶͼɹ +2025-02-27 10:52:09 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:10 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:10 - INFO - ƶλ +2025-02-27 10:52:10 - INFO - ʶͼɹ +2025-02-27 10:52:10 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:10 - INFO - ƶλ +2025-02-27 10:52:10 - INFO - ʶͼɹ +2025-02-27 10:52:10 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:10 - INFO - ƶλ +2025-02-27 10:52:10 - INFO - ʶͼɹ +2025-02-27 10:52:11 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:11 - INFO - ƶλ +2025-02-27 10:52:11 - INFO - ʶͼɹ +2025-02-27 10:52:11 - INFO - ƶλ +2025-02-27 10:52:11 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:11 - INFO - ʶͼɹ +2025-02-27 10:52:11 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:11 - INFO - ƶλ +2025-02-27 10:52:11 - INFO - ʶͼɹ +2025-02-27 10:52:12 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:12 - INFO - ƶλ +2025-02-27 10:52:12 - INFO - ʶͼɹ +2025-02-27 10:52:12 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:12 - INFO - ƶλ +2025-02-27 10:52:12 - INFO - ʶͼɹ +2025-02-27 10:52:12 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:12 - INFO - ƶλ +2025-02-27 10:52:12 - INFO - ʶͼɹ +2025-02-27 10:52:13 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:13 - INFO - ƶλ +2025-02-27 10:52:13 - INFO - ʶͼɹ +2025-02-27 10:52:13 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:13 - INFO - ƶλ +2025-02-27 10:52:13 - INFO - ʶͼɹ +2025-02-27 10:52:13 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:13 - INFO - ƶλ +2025-02-27 10:52:13 - INFO - ʶͼɹ +2025-02-27 10:52:14 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:14 - INFO - ƶλ +2025-02-27 10:52:14 - INFO - ʶͼɹ +2025-02-27 10:52:14 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:14 - INFO - ƶλ +2025-02-27 10:52:14 - INFO - ʶͼɹ +2025-02-27 10:52:14 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:14 - INFO - ƶλ +2025-02-27 10:52:14 - INFO - ʶͼɹ +2025-02-27 10:52:15 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:15 - INFO - ƶλ +2025-02-27 10:52:15 - INFO - ʶͼɹ +2025-02-27 10:52:15 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:15 - INFO - ƶλ +2025-02-27 10:52:15 - INFO - ʶͼɹ +2025-02-27 10:52:15 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:15 - INFO - ƶλ +2025-02-27 10:52:15 - INFO - ʶͼɹ +2025-02-27 10:52:16 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:16 - INFO - ƶλ +2025-02-27 10:52:16 - INFO - ʶͼɹ +2025-02-27 10:52:16 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:16 - INFO - ƶλ +2025-02-27 10:52:16 - INFO - ʶͼɹ +2025-02-27 10:52:16 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:16 - INFO - ƶλ +2025-02-27 10:52:16 - INFO - ʶͼɹ +2025-02-27 10:52:17 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:17 - INFO - ƶλ +2025-02-27 10:52:17 - INFO - ʶͼɹ +2025-02-27 10:52:17 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:17 - INFO - ƶλ +2025-02-27 10:52:17 - INFO - ʶͼɹ +2025-02-27 10:52:17 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:17 - INFO - ƶλ +2025-02-27 10:52:17 - INFO - ʶͼɹ +2025-02-27 10:52:18 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:18 - INFO - ƶλ +2025-02-27 10:52:18 - INFO - ʶͼɹ +2025-02-27 10:52:18 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:18 - INFO - ƶλ +2025-02-27 10:52:18 - INFO - ʶͼɹ +2025-02-27 10:52:18 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:18 - INFO - ƶλ +2025-02-27 10:52:18 - INFO - ʶͼɹ +2025-02-27 10:52:19 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:19 - INFO - ƶλ +2025-02-27 10:52:19 - INFO - ʶͼɹ +2025-02-27 10:52:19 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:19 - INFO - ƶλ +2025-02-27 10:52:19 - INFO - ʶͼɹ +2025-02-27 10:52:19 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:19 - INFO - ƶλ +2025-02-27 10:52:19 - INFO - ʶͼɹ +2025-02-27 10:52:20 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:20 - INFO - ƶλ +2025-02-27 10:52:20 - INFO - ʶͼɹ +2025-02-27 10:52:20 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:20 - INFO - ƶλ +2025-02-27 10:52:20 - INFO - ʶͼɹ +2025-02-27 10:52:20 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:20 - INFO - ƶλ +2025-02-27 10:52:20 - INFO - ʶͼɹ +2025-02-27 10:52:21 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:21 - INFO - ƶλ +2025-02-27 10:52:21 - INFO - ʶͼɹ +2025-02-27 10:52:21 - INFO - +2025-02-27 10:52:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:52:21 - INFO - Ͷֹͣ +2025-02-27 10:52:21 - INFO - +2025-02-27 10:52:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:52:21 - INFO - Ͷֹͣ +2025-02-27 10:52:22 - INFO - +2025-02-27 10:52:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:52:22 - INFO - Ͷֹͣ +2025-02-27 10:52:22 - INFO - +2025-02-27 10:52:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:52:22 - INFO - Ͷֹͣ +2025-02-27 10:52:22 - INFO - +2025-02-27 10:52:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:52:22 - INFO - Ͷֹͣ +2025-02-27 10:52:23 - INFO - +2025-02-27 10:52:23 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:52:23 - INFO - Ͷֹͣ +2025-02-27 10:52:23 - INFO - +2025-02-27 10:52:23 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:52:23 - INFO - ʼλ +2025-02-27 10:52:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 10:52:23 - INFO - IO: 21 +2025-02-27 10:52:23 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:24 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:52:24 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 10:52:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:24 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 10:52:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 10:52:24 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 10:52:24 - INFO - IO: 20 +2025-02-27 10:52:28 - INFO - һȷ +2025-02-27 10:52:28 - INFO - Ӧ1:ͶϿʼ +2025-02-27 10:52:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 10:52:28 - INFO - IO: 21 +2025-02-27 10:52:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 10:52:33 - INFO - IO: 20 +2025-02-27 10:52:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:33 - INFO - ͶϿʼ +2025-02-27 10:52:33 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 10:52:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:34 - INFO - ͶϿʼ +2025-02-27 10:52:34 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 10:52:36 - INFO - ƶλλ +2025-02-27 10:52:36 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 10:52:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:39 - INFO - ƶλλ +2025-02-27 10:52:39 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:52:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:39 - INFO - ǷȫͶ +2025-02-27 10:52:40 - INFO - ǷȫͶ +2025-02-27 10:52:40 - INFO - ǷȫͶ +2025-02-27 10:52:40 - INFO - ǷȫͶ +2025-02-27 10:52:40 - INFO - ǷȫͶ +2025-02-27 10:52:40 - INFO - ǷȫͶ +2025-02-27 10:52:41 - INFO - ǷȫͶ +2025-02-27 10:52:41 - INFO - ǷȫͶ +2025-02-27 10:52:41 - INFO - ǷȫͶ +2025-02-27 10:52:41 - INFO - ǷȫͶ +2025-02-27 10:52:42 - INFO - ǷȫͶ +2025-02-27 10:52:42 - INFO - ǷȫͶ +2025-02-27 10:52:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:42 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:52:42 - INFO - ǷȫͶ +2025-02-27 10:52:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:52:42 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:52:42 - INFO - ƶλ +2025-02-27 10:52:43 - INFO - ƶλ +2025-02-27 10:52:43 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:43 - INFO - ƶλ +2025-02-27 10:52:43 - INFO - ʶͼɹ +2025-02-27 10:52:43 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:43 - INFO - ƶλ +2025-02-27 10:52:43 - INFO - ʶͼɹ +2025-02-27 10:52:43 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:43 - INFO - ƶλ +2025-02-27 10:52:44 - INFO - ʶͼɹ +2025-02-27 10:52:44 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:44 - INFO - ƶλ +2025-02-27 10:52:44 - INFO - ʶͼɹ +2025-02-27 10:52:44 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:44 - INFO - ƶλ +2025-02-27 10:52:44 - INFO - ʶͼɹ +2025-02-27 10:52:44 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:44 - INFO - ƶλ +2025-02-27 10:52:45 - INFO - ʶͼɹ +2025-02-27 10:52:45 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:45 - INFO - ƶλ +2025-02-27 10:52:45 - INFO - ʶͼɹ +2025-02-27 10:52:45 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:45 - INFO - ƶλ +2025-02-27 10:52:45 - INFO - ʶͼɹ +2025-02-27 10:52:45 - INFO - ƶλ +2025-02-27 10:52:45 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:46 - INFO - ʶͼɹ +2025-02-27 10:52:46 - INFO - ƶλ +2025-02-27 10:52:46 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:46 - INFO - ʶͼɹ +2025-02-27 10:52:46 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:46 - INFO - ƶλ +2025-02-27 10:52:46 - INFO - ʶͼɹ +2025-02-27 10:52:46 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:46 - INFO - ƶλ +2025-02-27 10:52:47 - INFO - ʶͼɹ +2025-02-27 10:52:47 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:47 - INFO - ƶλ +2025-02-27 10:52:47 - INFO - ʶͼɹ +2025-02-27 10:52:47 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:47 - INFO - ƶλ +2025-02-27 10:52:47 - INFO - ʶͼɹ +2025-02-27 10:52:47 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:47 - INFO - ƶλ +2025-02-27 10:52:48 - INFO - ʶͼɹ +2025-02-27 10:52:48 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:48 - INFO - ƶλ +2025-02-27 10:52:48 - INFO - ʶͼɹ +2025-02-27 10:52:48 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:48 - INFO - ƶλ +2025-02-27 10:52:48 - INFO - ʶͼɹ +2025-02-27 10:52:48 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:48 - INFO - ƶλ +2025-02-27 10:52:49 - INFO - ʶͼɹ +2025-02-27 10:52:49 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:49 - INFO - ƶλ +2025-02-27 10:52:49 - INFO - ʶͼɹ +2025-02-27 10:52:49 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:49 - INFO - ƶλ +2025-02-27 10:52:49 - INFO - ʶͼɹ +2025-02-27 10:52:49 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:49 - INFO - ƶλ +2025-02-27 10:52:50 - INFO - ʶͼɹ +2025-02-27 10:52:50 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:50 - INFO - ƶλ +2025-02-27 10:52:50 - INFO - ʶͼɹ +2025-02-27 10:52:50 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:50 - INFO - ƶλ +2025-02-27 10:52:50 - INFO - ʶͼɹ +2025-02-27 10:52:50 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:50 - INFO - ƶλ +2025-02-27 10:52:51 - INFO - ʶͼɹ +2025-02-27 10:52:51 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:51 - INFO - ƶλ +2025-02-27 10:52:51 - INFO - ʶͼɹ +2025-02-27 10:52:51 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:51 - INFO - ƶλ +2025-02-27 10:52:51 - INFO - ʶͼɹ +2025-02-27 10:52:51 - INFO - ƶλ +2025-02-27 10:52:51 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:52 - INFO - ʶͼɹ +2025-02-27 10:52:52 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:52 - INFO - ƶλ +2025-02-27 10:52:52 - INFO - ʶͼɹ +2025-02-27 10:52:52 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:52 - INFO - ƶλ +2025-02-27 10:52:52 - INFO - ʶͼɹ +2025-02-27 10:52:52 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:52 - INFO - ƶλ +2025-02-27 10:52:53 - INFO - ʶͼɹ +2025-02-27 10:52:53 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:53 - INFO - ƶλ +2025-02-27 10:52:53 - INFO - ʶͼɹ +2025-02-27 10:52:53 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:53 - INFO - ƶλ +2025-02-27 10:52:53 - INFO - ʶͼɹ +2025-02-27 10:52:53 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:53 - INFO - ƶλ +2025-02-27 10:52:54 - INFO - ʶͼɹ +2025-02-27 10:52:54 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:54 - INFO - ƶλ +2025-02-27 10:52:54 - INFO - ʶͼɹ +2025-02-27 10:52:54 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:54 - INFO - ƶλ +2025-02-27 10:52:54 - INFO - ʶͼɹ +2025-02-27 10:52:54 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:54 - INFO - ƶλ +2025-02-27 10:52:55 - INFO - ʶͼɹ +2025-02-27 10:52:55 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:55 - INFO - ƶλ +2025-02-27 10:52:55 - INFO - ʶͼɹ +2025-02-27 10:52:55 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:55 - INFO - ƶλ +2025-02-27 10:52:55 - INFO - ʶͼɹ +2025-02-27 10:52:55 - INFO - ƶλ +2025-02-27 10:52:55 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:56 - INFO - ʶͼɹ +2025-02-27 10:52:56 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:56 - INFO - ƶλ +2025-02-27 10:52:56 - INFO - ʶͼɹ +2025-02-27 10:52:56 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:56 - INFO - ƶλ +2025-02-27 10:52:56 - INFO - ʶͼɹ +2025-02-27 10:52:56 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:56 - INFO - ƶλ +2025-02-27 10:52:57 - INFO - ʶͼɹ +2025-02-27 10:52:57 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:57 - INFO - ƶλ +2025-02-27 10:52:57 - INFO - ʶͼɹ +2025-02-27 10:52:57 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:57 - INFO - ƶλ +2025-02-27 10:52:57 - INFO - ʶͼɹ +2025-02-27 10:52:57 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:57 - INFO - ƶλ +2025-02-27 10:52:58 - INFO - ʶͼɹ +2025-02-27 10:52:58 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:58 - INFO - ƶλ +2025-02-27 10:52:58 - INFO - ʶͼɹ +2025-02-27 10:52:58 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:58 - INFO - ƶλ +2025-02-27 10:52:58 - INFO - ʶͼɹ +2025-02-27 10:52:58 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:58 - INFO - ƶλ +2025-02-27 10:52:59 - INFO - ʶͼɹ +2025-02-27 10:52:59 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:59 - INFO - ƶλ +2025-02-27 10:52:59 - INFO - ʶͼɹ +2025-02-27 10:52:59 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:59 - INFO - ƶλ +2025-02-27 10:52:59 - INFO - ʶͼɹ +2025-02-27 10:52:59 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:52:59 - INFO - ƶλ +2025-02-27 10:53:00 - INFO - ʶͼɹ +2025-02-27 10:53:00 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:00 - INFO - ƶλ +2025-02-27 10:53:00 - INFO - ʶͼɹ +2025-02-27 10:53:00 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:00 - INFO - ƶλ +2025-02-27 10:53:00 - INFO - ʶͼɹ +2025-02-27 10:53:00 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:00 - INFO - ƶλ +2025-02-27 10:53:01 - INFO - ʶͼɹ +2025-02-27 10:53:01 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:01 - INFO - ƶλ +2025-02-27 10:53:01 - INFO - ʶͼɹ +2025-02-27 10:53:01 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:01 - INFO - ƶλ +2025-02-27 10:53:01 - INFO - ʶͼɹ +2025-02-27 10:53:01 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:01 - INFO - ƶλ +2025-02-27 10:53:02 - INFO - ʶͼɹ +2025-02-27 10:53:02 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:02 - INFO - ƶλ +2025-02-27 10:53:02 - INFO - ʶͼɹ +2025-02-27 10:53:02 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:02 - INFO - ƶλ +2025-02-27 10:53:02 - INFO - ʶͼɹ +2025-02-27 10:53:02 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:02 - INFO - ƶλ +2025-02-27 10:53:03 - INFO - ʶͼɹ +2025-02-27 10:53:03 - INFO - +2025-02-27 10:53:03 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:03 - INFO - ʼλ +2025-02-27 10:53:03 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:03 - INFO - ƶλ +2025-02-27 10:53:03 - INFO - ͶϽ +2025-02-27 10:53:03 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:03 - INFO - ƶλ +2025-02-27 10:53:04 - INFO - ͶϽ +2025-02-27 10:53:04 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:04 - INFO - ƶλ +2025-02-27 10:53:04 - INFO - ͶϽ +2025-02-27 10:53:04 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:04 - INFO - ƶλ +2025-02-27 10:53:04 - INFO - ͶϽ +2025-02-27 10:53:04 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:04 - INFO - ƶλ +2025-02-27 10:53:05 - INFO - ͶϽ +2025-02-27 10:53:05 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:05 - INFO - ƶλ +2025-02-27 10:53:05 - INFO - ͶϽ +2025-02-27 10:53:05 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:05 - INFO - ƶλ +2025-02-27 10:53:05 - INFO - ͶϽ +2025-02-27 10:53:05 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:05 - INFO - ƶλ +2025-02-27 10:53:06 - INFO - ͶϽ +2025-02-27 10:53:06 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:06 - INFO - ƶλ +2025-02-27 10:53:06 - INFO - ͶϽ +2025-02-27 10:53:06 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:06 - INFO - ƶλ +2025-02-27 10:53:06 - INFO - ͶϽ +2025-02-27 10:53:06 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:06 - INFO - ƶλ +2025-02-27 10:53:07 - INFO - ͶϽ +2025-02-27 10:53:07 - INFO - +2025-02-27 10:53:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:07 - INFO - Ͷֹͣ +2025-02-27 10:53:07 - INFO - +2025-02-27 10:53:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:07 - INFO - Ͷֹͣ +2025-02-27 10:53:07 - INFO - +2025-02-27 10:53:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:08 - INFO - Ͷֹͣ +2025-02-27 10:53:08 - INFO - +2025-02-27 10:53:08 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:08 - INFO - ʼλ +2025-02-27 10:53:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 10:53:08 - INFO - IO: 21 +2025-02-27 10:53:08 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:08 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:53:08 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:09 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 10:53:09 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 10:53:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 10:53:10 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 10:53:11 - INFO - IO: 20 +2025-02-27 10:53:14 - INFO - λɹ +2025-02-27 10:53:16 - INFO - һȷ +2025-02-27 10:53:16 - INFO - Ӧ1:ͶϿʼ +2025-02-27 10:53:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 10:53:16 - INFO - IO: 21 +2025-02-27 10:53:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 10:53:21 - INFO - IO: 20 +2025-02-27 10:53:21 - INFO - ͶϿʼ +2025-02-27 10:53:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:21 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 10:53:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:22 - INFO - ͶϿʼ +2025-02-27 10:53:22 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 10:53:24 - INFO - ƶλλ +2025-02-27 10:53:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:24 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 10:53:27 - INFO - ƶλλ +2025-02-27 10:53:27 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:53:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:27 - INFO - ǷȫͶ +2025-02-27 10:53:27 - INFO - ǷȫͶ +2025-02-27 10:53:28 - INFO - ǷȫͶ +2025-02-27 10:53:28 - INFO - ǷȫͶ +2025-02-27 10:53:28 - INFO - ǷȫͶ +2025-02-27 10:53:28 - INFO - ǷȫͶ +2025-02-27 10:53:29 - INFO - ǷȫͶ +2025-02-27 10:53:29 - INFO - ǷȫͶ +2025-02-27 10:53:29 - INFO - ǷȫͶ +2025-02-27 10:53:29 - INFO - ǷȫͶ +2025-02-27 10:53:29 - INFO - ǷȫͶ +2025-02-27 10:53:30 - INFO - ǷȫͶ +2025-02-27 10:53:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:30 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:53:30 - INFO - ǷȫͶ +2025-02-27 10:53:30 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:53:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:30 - INFO - ƶλ +2025-02-27 10:53:30 - INFO - ƶλ +2025-02-27 10:53:31 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:31 - INFO - ƶλ +2025-02-27 10:53:31 - INFO - ʶͼɹ +2025-02-27 10:53:31 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:31 - INFO - ƶλ +2025-02-27 10:53:31 - INFO - ʶͼɹ +2025-02-27 10:53:31 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:31 - INFO - ƶλ +2025-02-27 10:53:31 - INFO - ʶͼɹ +2025-02-27 10:53:32 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:32 - INFO - ƶλ +2025-02-27 10:53:32 - INFO - ʶͼɹ +2025-02-27 10:53:32 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:32 - INFO - ƶλ +2025-02-27 10:53:32 - INFO - ʶͼɹ +2025-02-27 10:53:32 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:32 - INFO - ƶλ +2025-02-27 10:53:32 - INFO - ʶͼɹ +2025-02-27 10:53:33 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:33 - INFO - ƶλ +2025-02-27 10:53:33 - INFO - ʶͼɹ +2025-02-27 10:53:33 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:33 - INFO - ƶλ +2025-02-27 10:53:33 - INFO - ʶͼɹ +2025-02-27 10:53:33 - INFO - ƶλ +2025-02-27 10:53:33 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:33 - INFO - ʶͼɹ +2025-02-27 10:53:34 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:34 - INFO - ƶλ +2025-02-27 10:53:34 - INFO - ʶͼɹ +2025-02-27 10:53:34 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:34 - INFO - ƶλ +2025-02-27 10:53:34 - INFO - ʶͼɹ +2025-02-27 10:53:34 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:34 - INFO - ƶλ +2025-02-27 10:53:34 - INFO - ʶͼɹ +2025-02-27 10:53:35 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:35 - INFO - ƶλ +2025-02-27 10:53:35 - INFO - ʶͼɹ +2025-02-27 10:53:35 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:35 - INFO - ƶλ +2025-02-27 10:53:35 - INFO - ʶͼɹ +2025-02-27 10:53:35 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:35 - INFO - ƶλ +2025-02-27 10:53:35 - INFO - ʶͼɹ +2025-02-27 10:53:36 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:36 - INFO - ƶλ +2025-02-27 10:53:36 - INFO - ʶͼɹ +2025-02-27 10:53:36 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:36 - INFO - ƶλ +2025-02-27 10:53:36 - INFO - ʶͼɹ +2025-02-27 10:53:36 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:36 - INFO - ƶλ +2025-02-27 10:53:36 - INFO - ʶͼɹ +2025-02-27 10:53:37 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:37 - INFO - ƶλ +2025-02-27 10:53:37 - INFO - ʶͼɹ +2025-02-27 10:53:37 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:37 - INFO - ƶλ +2025-02-27 10:53:37 - INFO - ʶͼɹ +2025-02-27 10:53:37 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:37 - INFO - ƶλ +2025-02-27 10:53:37 - INFO - ʶͼɹ +2025-02-27 10:53:38 - INFO - ƶλ +2025-02-27 10:53:38 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:38 - INFO - ʶͼɹ +2025-02-27 10:53:38 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:38 - INFO - ƶλ +2025-02-27 10:53:38 - INFO - ʶͼɹ +2025-02-27 10:53:38 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:38 - INFO - ƶλ +2025-02-27 10:53:38 - INFO - ʶͼɹ +2025-02-27 10:53:39 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:39 - INFO - ƶλ +2025-02-27 10:53:39 - INFO - ʶͼɹ +2025-02-27 10:53:39 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:39 - INFO - ƶλ +2025-02-27 10:53:39 - INFO - ʶͼɹ +2025-02-27 10:53:39 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:39 - INFO - ƶλ +2025-02-27 10:53:39 - INFO - ʶͼɹ +2025-02-27 10:53:40 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:40 - INFO - ƶλ +2025-02-27 10:53:40 - INFO - ʶͼɹ +2025-02-27 10:53:40 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:40 - INFO - ƶλ +2025-02-27 10:53:40 - INFO - ʶͼɹ +2025-02-27 10:53:40 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:40 - INFO - ƶλ +2025-02-27 10:53:40 - INFO - ʶͼɹ +2025-02-27 10:53:41 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:41 - INFO - ƶλ +2025-02-27 10:53:41 - INFO - ʶͼɹ +2025-02-27 10:53:41 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:41 - INFO - ƶλ +2025-02-27 10:53:41 - INFO - ʶͼɹ +2025-02-27 10:53:41 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:41 - INFO - ƶλ +2025-02-27 10:53:41 - INFO - ʶͼɹ +2025-02-27 10:53:42 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:42 - INFO - ƶλ +2025-02-27 10:53:42 - INFO - ʶͼɹ +2025-02-27 10:53:42 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:42 - INFO - ƶλ +2025-02-27 10:53:42 - INFO - ʶͼɹ +2025-02-27 10:53:42 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:42 - INFO - ƶλ +2025-02-27 10:53:42 - INFO - ʶͼɹ +2025-02-27 10:53:43 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:43 - INFO - ƶλ +2025-02-27 10:53:43 - INFO - ʶͼɹ +2025-02-27 10:53:43 - INFO - ƶλ +2025-02-27 10:53:43 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:43 - INFO - ʶͼɹ +2025-02-27 10:53:43 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:53:43 - INFO - ƶλ +2025-02-27 10:53:43 - INFO - ʶͼɹ +2025-02-27 10:53:44 - INFO - +2025-02-27 10:53:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:44 - INFO - ʼλ +2025-02-27 10:53:44 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:44 - INFO - ƶλ +2025-02-27 10:53:44 - INFO - ͶϽ +2025-02-27 10:53:44 - INFO - +2025-02-27 10:53:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:44 - INFO - ʼλ +2025-02-27 10:53:45 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:45 - INFO - ƶλ +2025-02-27 10:53:45 - INFO - ͶϽ +2025-02-27 10:53:45 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:45 - INFO - ƶλ +2025-02-27 10:53:45 - INFO - ͶϽ +2025-02-27 10:53:45 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:45 - INFO - ƶλ +2025-02-27 10:53:45 - INFO - ͶϽ +2025-02-27 10:53:46 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:46 - INFO - ƶλ +2025-02-27 10:53:46 - INFO - ͶϽ +2025-02-27 10:53:46 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:46 - INFO - ƶλ +2025-02-27 10:53:46 - INFO - ͶϽ +2025-02-27 10:53:46 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:46 - INFO - ƶλ +2025-02-27 10:53:46 - INFO - ͶϽ +2025-02-27 10:53:47 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:47 - INFO - ƶλ +2025-02-27 10:53:47 - INFO - ͶϽ +2025-02-27 10:53:47 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:47 - INFO - ƶλ +2025-02-27 10:53:47 - INFO - ͶϽ +2025-02-27 10:53:47 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:47 - INFO - ƶλ +2025-02-27 10:53:47 - INFO - ͶϽ +2025-02-27 10:53:48 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:48 - INFO - ƶλ +2025-02-27 10:53:48 - INFO - ͶϽ +2025-02-27 10:53:48 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:48 - INFO - ƶλ +2025-02-27 10:53:48 - INFO - ͶϽ +2025-02-27 10:53:48 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:48 - INFO - ƶλ +2025-02-27 10:53:48 - INFO - ͶϽ +2025-02-27 10:53:49 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:49 - INFO - ƶλ +2025-02-27 10:53:49 - INFO - ͶϽ +2025-02-27 10:53:49 - INFO - +2025-02-27 10:53:49 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:49 - INFO - ʼλ +2025-02-27 10:53:49 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:49 - INFO - ƶλ +2025-02-27 10:53:49 - INFO - ͶϽ +2025-02-27 10:53:50 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:50 - INFO - ƶλ +2025-02-27 10:53:50 - INFO - ͶϽ +2025-02-27 10:53:50 - ERROR - 'FeedLine' object has no attribute 'start_to_take' +2025-02-27 10:53:50 - INFO - ƶλ +2025-02-27 10:53:50 - INFO - ͶϽ +2025-02-27 10:53:50 - INFO - +2025-02-27 10:53:50 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:50 - INFO - Ͷֹͣ +2025-02-27 10:53:51 - INFO - +2025-02-27 10:53:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:51 - INFO - Ͷֹͣ +2025-02-27 10:53:51 - INFO - +2025-02-27 10:53:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:51 - INFO - Ͷֹͣ +2025-02-27 10:53:51 - INFO - +2025-02-27 10:53:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:53:51 - INFO - ʼλ +2025-02-27 10:53:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 10:53:52 - INFO - IO: 21 +2025-02-27 10:53:52 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:53:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:52 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 10:53:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:52 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 10:53:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:53:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 10:53:55 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 10:53:55 - INFO - IO: 20 +2025-02-27 10:53:58 - INFO - λɹ +2025-02-27 10:54:00 - INFO - һȷ +2025-02-27 10:54:00 - INFO - Ӧ1:ͶϿʼ +2025-02-27 10:54:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 10:54:00 - INFO - IO: 21 +2025-02-27 10:54:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 10:54:05 - INFO - IO: 20 +2025-02-27 10:54:05 - INFO - ͶϿʼ +2025-02-27 10:54:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:54:06 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 10:54:06 - INFO - ͶϿʼ +2025-02-27 10:54:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:54:06 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 10:54:08 - INFO - ƶλλ +2025-02-27 10:54:08 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 10:54:08 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:54:11 - INFO - ƶλλ +2025-02-27 10:54:11 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:54:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:54:12 - INFO - ǷȫͶ +2025-02-27 10:54:12 - INFO - ǷȫͶ +2025-02-27 10:54:12 - INFO - ǷȫͶ +2025-02-27 10:54:12 - INFO - ǷȫͶ +2025-02-27 10:54:12 - INFO - ǷȫͶ +2025-02-27 10:54:13 - INFO - ǷȫͶ +2025-02-27 10:54:13 - INFO - ǷȫͶ +2025-02-27 10:54:13 - INFO - ǷȫͶ +2025-02-27 10:54:13 - INFO - ǷȫͶ +2025-02-27 10:54:14 - INFO - ǷȫͶ +2025-02-27 10:54:14 - INFO - ǷȫͶ +2025-02-27 10:54:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:54:14 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:54:14 - INFO - ǷȫͶ +2025-02-27 10:54:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 10:54:14 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 10:54:14 - INFO - ƶλ +2025-02-27 10:54:15 - INFO - ƶλ +2025-02-27 10:54:15 - INFO - ƶλ +2025-02-27 10:54:15 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:15 - INFO - ƶλ +2025-02-27 10:54:15 - INFO - ʶͼɹ +2025-02-27 10:54:15 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:15 - INFO - ƶλ +2025-02-27 10:54:15 - INFO - ʶͼɹ +2025-02-27 10:54:16 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:16 - INFO - ƶλ +2025-02-27 10:54:16 - INFO - ʶͼɹ +2025-02-27 10:54:16 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:16 - INFO - ƶλ +2025-02-27 10:54:16 - INFO - ʶͼɹ +2025-02-27 10:54:16 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:16 - INFO - ƶλ +2025-02-27 10:54:16 - INFO - ʶͼɹ +2025-02-27 10:54:17 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:17 - INFO - ƶλ +2025-02-27 10:54:17 - INFO - ʶͼɹ +2025-02-27 10:54:17 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:17 - INFO - ƶλ +2025-02-27 10:54:17 - INFO - ʶͼɹ +2025-02-27 10:54:17 - INFO - Ͷͣ +2025-02-27 10:54:17 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","1"]} +2025-02-27 10:54:22 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","0"]} +2025-02-27 10:54:22 - INFO - Ͷϼ +2025-02-27 10:54:22 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 10:54:22 - INFO - лԶ״̬ +2025-02-27 10:54:22 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:22 - INFO - ƶλ +2025-02-27 10:54:22 - INFO - ʶͼɹ +2025-02-27 10:54:23 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:23 - INFO - ƶλ +2025-02-27 10:54:23 - INFO - ʶͼɹ +2025-02-27 10:54:23 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:23 - INFO - ƶλ +2025-02-27 10:54:23 - INFO - ʶͼɹ +2025-02-27 10:54:23 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:23 - INFO - ƶλ +2025-02-27 10:54:23 - INFO - ʶͼɹ +2025-02-27 10:54:24 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:24 - INFO - ƶλ +2025-02-27 10:54:24 - INFO - ʶͼɹ +2025-02-27 10:54:24 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:24 - INFO - ƶλ +2025-02-27 10:54:24 - INFO - ʶͼɹ +2025-02-27 10:54:24 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:24 - INFO - ƶλ +2025-02-27 10:54:24 - INFO - ʶͼɹ +2025-02-27 10:54:25 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:25 - INFO - ƶλ +2025-02-27 10:54:25 - INFO - ʶͼɹ +2025-02-27 10:54:25 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:25 - INFO - ƶλ +2025-02-27 10:54:25 - INFO - ʶͼɹ +2025-02-27 10:54:25 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:25 - INFO - ƶλ +2025-02-27 10:54:25 - INFO - ʶͼɹ +2025-02-27 10:54:26 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:26 - INFO - ƶλ +2025-02-27 10:54:26 - INFO - ʶͼɹ +2025-02-27 10:54:26 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:26 - INFO - ƶλ +2025-02-27 10:54:26 - INFO - ʶͼɹ +2025-02-27 10:54:26 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:26 - INFO - ƶλ +2025-02-27 10:54:26 - INFO - ʶͼɹ +2025-02-27 10:54:27 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:27 - INFO - ƶλ +2025-02-27 10:54:27 - INFO - ʶͼɹ +2025-02-27 10:54:27 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:27 - INFO - ƶλ +2025-02-27 10:54:27 - INFO - ʶͼɹ +2025-02-27 10:54:27 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:27 - INFO - ƶλ +2025-02-27 10:54:27 - INFO - ʶͼɹ +2025-02-27 10:54:28 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:28 - INFO - ƶλ +2025-02-27 10:54:28 - INFO - ʶͼɹ +2025-02-27 10:54:28 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:28 - INFO - ƶλ +2025-02-27 10:54:28 - INFO - ʶͼɹ +2025-02-27 10:54:28 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:28 - INFO - ƶλ +2025-02-27 10:54:28 - INFO - ʶͼɹ +2025-02-27 10:54:29 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:29 - INFO - ƶλ +2025-02-27 10:54:29 - INFO - ʶͼɹ +2025-02-27 10:54:29 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:29 - INFO - ƶλ +2025-02-27 10:54:29 - INFO - ʶͼɹ +2025-02-27 10:54:29 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:29 - INFO - ƶλ +2025-02-27 10:54:29 - INFO - ʶͼɹ +2025-02-27 10:54:30 - ERROR - 'Real_Position' object has no attribute 'a' +2025-02-27 10:54:30 - INFO - ƶλ +2025-02-27 10:54:30 - INFO - ʶͼɹ +2025-02-27 10:54:30 - INFO - +2025-02-27 10:54:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:54:30 - INFO - Ͷֹͣ +2025-02-27 10:54:30 - INFO - +2025-02-27 10:54:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:54:30 - INFO - Ͷֹͣ +2025-02-27 10:54:31 - INFO - +2025-02-27 10:54:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:54:31 - INFO - Ͷֹͣ +2025-02-27 10:54:31 - INFO - +2025-02-27 10:54:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:54:31 - INFO - Ͷֹͣ +2025-02-27 10:54:31 - INFO - +2025-02-27 10:54:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 10:54:31 - INFO - Ͷֹͣ +2025-02-27 11:04:58 - INFO - ϵͳ +2025-02-27 11:05:28 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-27 11:05:29 - INFO - л +2025-02-27 11:05:29 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:05:29 - INFO - лԶ״̬ +2025-02-27 11:05:29 - INFO - +2025-02-27 11:05:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:05:29 - INFO - ʼλ +2025-02-27 11:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:05:29 - ERROR - еδʵ·ߵƶδѰҵ·λ +2025-02-27 11:05:29 - INFO - IO: 21 +2025-02-27 11:05:30 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:05:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:05:30 - ERROR - 42 +2025-02-27 11:05:30 - ERROR - 42 +2025-02-27 11:05:30 - ERROR - 42 +2025-02-27 11:05:30 - ERROR - 42 +2025-02-27 11:05:31 - ERROR - 42 +2025-02-27 11:05:31 - ERROR - 42 +2025-02-27 11:05:31 - ERROR - 42 +2025-02-27 11:05:31 - ERROR - 42 +2025-02-27 11:05:31 - ERROR - 42 +2025-02-27 11:05:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:05:35 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 11:05:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:05:39 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 11:05:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 11:05:44 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 11:05:44 - INFO - IO: 20 +2025-02-27 11:07:27 - INFO - û˳ +2025-02-27 11:10:06 - INFO - ϵͳ +2025-02-27 11:10:24 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-27 11:10:24 - INFO - л +2025-02-27 11:10:24 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:10:24 - INFO - лԶ״̬ +2025-02-27 11:10:24 - INFO - һȷ +2025-02-27 11:10:25 - INFO - Ӧ1:ͶϿʼ +2025-02-27 11:10:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:10:25 - INFO - IO: 21 +2025-02-27 11:10:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 11:10:30 - INFO - IO: 20 +2025-02-27 11:10:30 - INFO - ͶϿʼ +2025-02-27 11:10:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:30 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 11:10:30 - INFO - ͶϿʼ +2025-02-27 11:10:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:30 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 11:10:32 - INFO - ƶλλ +2025-02-27 11:10:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:33 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 11:10:36 - INFO - ƶλλ +2025-02-27 11:10:36 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:10:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:36 - INFO - ǷȫͶ +2025-02-27 11:10:36 - INFO - ǷȫͶ +2025-02-27 11:10:36 - INFO - ǷȫͶ +2025-02-27 11:10:37 - INFO - ǷȫͶ +2025-02-27 11:10:37 - INFO - ǷȫͶ +2025-02-27 11:10:37 - INFO - ǷȫͶ +2025-02-27 11:10:37 - INFO - ǷȫͶ +2025-02-27 11:10:37 - INFO - ǷȫͶ +2025-02-27 11:10:38 - INFO - ǷȫͶ +2025-02-27 11:10:38 - INFO - ǷȫͶ +2025-02-27 11:10:38 - INFO - ǷȫͶ +2025-02-27 11:10:38 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:10:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:38 - INFO - ǷȫͶ +2025-02-27 11:10:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:39 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:10:39 - INFO - ƶλ +2025-02-27 11:10:39 - INFO - ƶλ +2025-02-27 11:10:39 - INFO - ƶλ +2025-02-27 11:10:39 - INFO - ƶλ +2025-02-27 11:10:39 - INFO - ʶͼɹ +2025-02-27 11:10:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:40 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:10:40 - INFO - ƶλ +2025-02-27 11:10:40 - INFO - ƶλ +2025-02-27 11:10:40 - INFO - ƶλ +2025-02-27 11:10:40 - INFO - ʶͼɹ +2025-02-27 11:10:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:40 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 11:10:42 - INFO - ƶλλ +2025-02-27 11:10:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:43 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 11:10:45 - INFO - ƶλλ +2025-02-27 11:10:45 - INFO - ƶλ:ֱߣX:-1195.7892965678118-Y:1185.6162785757224-Z:2875.5471851755774-U:1.1318396861849662-V:16.944290852547294-W:-75.63399112694525 +2025-02-27 11:10:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"-1195.7892965678118","m1":"1185.6162785757224","m2":"2875.5471851755774","m3":"1.1318396861849662","m4":"16.944290852547294","m5":"-75.63399112694525","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:10:47 - ERROR - 130 +2025-02-27 11:10:47 - ERROR - 130 +2025-02-27 11:10:47 - ERROR - 130 +2025-02-27 11:10:47 - ERROR - 130 +2025-02-27 11:10:47 - ERROR - 130 +2025-02-27 11:10:48 - ERROR - 130 +2025-02-27 11:10:48 - ERROR - 130 +2025-02-27 11:10:48 - ERROR - 130 +2025-02-27 11:10:48 - ERROR - 130 +2025-02-27 11:10:48 - ERROR - 130 +2025-02-27 11:10:49 - ERROR - 130 +2025-02-27 11:10:49 - ERROR - 130 +2025-02-27 11:10:49 - ERROR - 130 +2025-02-27 11:10:49 - ERROR - 130 +2025-02-27 11:10:50 - ERROR - 130 +2025-02-27 11:10:50 - ERROR - 130 +2025-02-27 11:10:50 - ERROR - 130 +2025-02-27 11:10:50 - ERROR - 130 +2025-02-27 11:10:50 - ERROR - 130 +2025-02-27 11:10:51 - ERROR - 130 +2025-02-27 11:10:51 - ERROR - 130 +2025-02-27 11:10:51 - ERROR - 130 +2025-02-27 11:10:51 - ERROR - 130 +2025-02-27 11:10:51 - ERROR - 130 +2025-02-27 11:10:52 - ERROR - 130 +2025-02-27 11:10:52 - ERROR - 130 +2025-02-27 11:10:52 - ERROR - 130 +2025-02-27 11:10:52 - ERROR - 130 +2025-02-27 11:10:52 - ERROR - 130 +2025-02-27 11:10:53 - ERROR - 130 +2025-02-27 11:10:53 - ERROR - 130 +2025-02-27 11:10:53 - ERROR - 130 +2025-02-27 11:10:53 - ERROR - 130 +2025-02-27 11:10:53 - ERROR - 130 +2025-02-27 11:10:54 - ERROR - 130 +2025-02-27 11:10:54 - ERROR - 130 +2025-02-27 11:10:54 - ERROR - 130 +2025-02-27 11:10:54 - ERROR - 130 +2025-02-27 11:10:54 - ERROR - 130 +2025-02-27 11:10:55 - ERROR - 130 +2025-02-27 11:10:55 - ERROR - 130 +2025-02-27 11:10:55 - ERROR - 130 +2025-02-27 11:10:55 - ERROR - 130 +2025-02-27 11:10:55 - ERROR - 130 +2025-02-27 11:10:56 - ERROR - 130 +2025-02-27 11:10:56 - ERROR - 130 +2025-02-27 11:10:56 - ERROR - 130 +2025-02-27 11:10:56 - ERROR - 130 +2025-02-27 11:10:57 - ERROR - 130 +2025-02-27 11:10:57 - ERROR - 130 +2025-02-27 11:10:57 - ERROR - 130 +2025-02-27 11:10:57 - ERROR - 130 +2025-02-27 11:10:57 - ERROR - 130 +2025-02-27 11:10:58 - ERROR - 130 +2025-02-27 11:10:58 - ERROR - 130 +2025-02-27 11:10:58 - ERROR - 130 +2025-02-27 11:10:58 - ERROR - 130 +2025-02-27 11:10:58 - ERROR - 130 +2025-02-27 11:10:59 - ERROR - 130 +2025-02-27 11:10:59 - ERROR - 130 +2025-02-27 11:10:59 - ERROR - 130 +2025-02-27 11:10:59 - ERROR - 130 +2025-02-27 11:10:59 - ERROR - 130 +2025-02-27 11:11:00 - ERROR - 130 +2025-02-27 11:11:00 - ERROR - 130 +2025-02-27 11:11:00 - ERROR - 130 +2025-02-27 11:11:00 - ERROR - 130 +2025-02-27 11:11:00 - ERROR - 130 +2025-02-27 11:11:01 - ERROR - 130 +2025-02-27 11:11:01 - ERROR - 130 +2025-02-27 11:11:01 - ERROR - 130 +2025-02-27 11:11:01 - ERROR - 130 +2025-02-27 11:11:01 - ERROR - 130 +2025-02-27 11:11:02 - ERROR - 130 +2025-02-27 11:11:02 - ERROR - 130 +2025-02-27 11:11:02 - ERROR - 130 +2025-02-27 11:11:02 - ERROR - 130 +2025-02-27 11:11:02 - ERROR - 130 +2025-02-27 11:11:03 - ERROR - 130 +2025-02-27 11:11:03 - ERROR - 130 +2025-02-27 11:11:03 - ERROR - 130 +2025-02-27 11:11:03 - ERROR - 130 +2025-02-27 11:11:04 - ERROR - 130 +2025-02-27 11:11:04 - ERROR - 130 +2025-02-27 11:11:04 - ERROR - 130 +2025-02-27 11:11:04 - ERROR - 130 +2025-02-27 11:11:04 - ERROR - 130 +2025-02-27 11:11:05 - ERROR - 130 +2025-02-27 11:11:05 - ERROR - 130 +2025-02-27 11:11:05 - ERROR - 130 +2025-02-27 11:11:05 - ERROR - 130 +2025-02-27 11:14:14 - INFO - ϵͳ +2025-02-27 11:14:38 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-27 11:14:38 - INFO - л +2025-02-27 11:14:38 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:14:38 - INFO - лԶ״̬ +2025-02-27 11:14:38 - INFO - +2025-02-27 11:14:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:14:39 - INFO - ʼλ +2025-02-27 11:14:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:14:39 - ERROR - еδʵ·ߵƶδѰҵ·λ +2025-02-27 11:14:39 - INFO - IO: 21 +2025-02-27 11:14:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:14:39 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 11:14:40 - ERROR - 130 +2025-02-27 11:14:40 - ERROR - 130 +2025-02-27 11:14:40 - ERROR - 130 +2025-02-27 11:14:40 - ERROR - 130 +2025-02-27 11:14:40 - ERROR - 130 +2025-02-27 11:14:41 - ERROR - 130 +2025-02-27 11:14:41 - ERROR - 130 +2025-02-27 11:14:41 - ERROR - 130 +2025-02-27 11:14:41 - ERROR - 130 +2025-02-27 11:14:41 - ERROR - 130 +2025-02-27 11:14:42 - ERROR - 130 +2025-02-27 11:14:42 - ERROR - 130 +2025-02-27 11:14:42 - ERROR - 130 +2025-02-27 11:14:42 - ERROR - 130 +2025-02-27 11:14:43 - ERROR - 130 +2025-02-27 11:14:43 - ERROR - 130 +2025-02-27 11:14:43 - ERROR - 130 +2025-02-27 11:14:43 - ERROR - 130 +2025-02-27 11:14:43 - ERROR - 130 +2025-02-27 11:14:44 - ERROR - 130 +2025-02-27 11:14:44 - ERROR - 130 +2025-02-27 11:14:44 - ERROR - 130 +2025-02-27 11:14:44 - ERROR - 130 +2025-02-27 11:14:44 - ERROR - 130 +2025-02-27 11:14:45 - ERROR - 130 +2025-02-27 11:14:45 - ERROR - 130 +2025-02-27 11:14:45 - ERROR - 130 +2025-02-27 11:14:45 - ERROR - 130 +2025-02-27 11:14:45 - ERROR - 130 +2025-02-27 11:14:46 - ERROR - 130 +2025-02-27 11:14:46 - ERROR - 130 +2025-02-27 11:14:46 - ERROR - 130 +2025-02-27 11:14:46 - ERROR - 130 +2025-02-27 11:14:46 - ERROR - 130 +2025-02-27 11:14:47 - ERROR - 130 +2025-02-27 11:14:47 - ERROR - 130 +2025-02-27 11:14:47 - ERROR - 130 +2025-02-27 11:14:47 - ERROR - 130 +2025-02-27 11:14:47 - ERROR - 130 +2025-02-27 11:14:48 - ERROR - 130 +2025-02-27 11:14:48 - ERROR - 130 +2025-02-27 11:14:48 - ERROR - 130 +2025-02-27 11:14:48 - ERROR - 130 +2025-02-27 11:14:48 - ERROR - 130 +2025-02-27 11:14:49 - ERROR - 130 +2025-02-27 11:14:49 - ERROR - 130 +2025-02-27 11:14:49 - ERROR - 130 +2025-02-27 11:14:49 - ERROR - 130 +2025-02-27 11:14:50 - ERROR - 130 +2025-02-27 11:14:50 - ERROR - 130 +2025-02-27 11:14:50 - ERROR - 130 +2025-02-27 11:14:50 - ERROR - 130 +2025-02-27 11:14:50 - ERROR - 130 +2025-02-27 11:14:58 - INFO - +2025-02-27 11:14:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:14:58 - INFO - Ͷֹͣ +2025-02-27 11:14:58 - INFO - +2025-02-27 11:14:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:14:59 - INFO - Ͷֹͣ +2025-02-27 11:14:59 - INFO - +2025-02-27 11:14:59 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:14:59 - INFO - Ͷֹͣ +2025-02-27 11:14:59 - INFO - +2025-02-27 11:14:59 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:14:59 - INFO - Ͷֹͣ +2025-02-27 11:15:37 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-27 11:15:37 - INFO - л +2025-02-27 11:15:37 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:15:37 - INFO - лԶ״̬ +2025-02-27 11:15:37 - INFO - +2025-02-27 11:15:37 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:15:37 - INFO - ʼλ +2025-02-27 11:15:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:15:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:15:38 - ERROR - еδʵ·ߵƶδѰҵ·λ +2025-02-27 11:15:38 - INFO - IO: 21 +2025-02-27 11:15:38 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 11:15:41 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:15:42 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 11:15:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:15:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 11:15:47 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 11:15:47 - INFO - IO: 20 +2025-02-27 11:16:07 - INFO - û˳ +2025-02-27 11:23:30 - INFO - ϵͳ +2025-02-27 11:25:32 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-27 11:25:32 - INFO - л +2025-02-27 11:25:32 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:25:32 - INFO - лԶ״̬ +2025-02-27 11:25:33 - INFO - һȷ +2025-02-27 11:25:33 - INFO - Ӧ1:ͶϿʼ +2025-02-27 11:25:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:25:33 - INFO - IO: 21 +2025-02-27 11:25:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 11:25:38 - INFO - IO: 20 +2025-02-27 11:25:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:38 - INFO - ͶϿʼ +2025-02-27 11:25:38 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 11:25:38 - INFO - ͶϿʼ +2025-02-27 11:25:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:39 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 11:25:41 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:41 - INFO - ƶλλ +2025-02-27 11:25:41 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 11:25:44 - INFO - ƶλλ +2025-02-27 11:25:44 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:25:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:44 - INFO - ǷȫͶ +2025-02-27 11:25:44 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:45 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:46 - INFO - ǷȫͶ +2025-02-27 11:25:47 - INFO - ǷȫͶ +2025-02-27 11:25:47 - INFO - ǷȫͶ +2025-02-27 11:25:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:47 - INFO - ǷȫͶ +2025-02-27 11:25:47 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:25:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:47 - INFO - ǷȫͶ +2025-02-27 11:25:47 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:25:47 - INFO - ƶλ +2025-02-27 11:25:48 - INFO - ƶλ +2025-02-27 11:25:48 - INFO - ƶλ +2025-02-27 11:25:48 - INFO - ƶλ +2025-02-27 11:25:48 - INFO - ƶλ +2025-02-27 11:25:48 - INFO - ƶλ +2025-02-27 11:25:48 - INFO - ʶͼɹ +2025-02-27 11:25:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:48 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:25:48 - INFO - ƶλ +2025-02-27 11:25:49 - INFO - ƶλ +2025-02-27 11:25:49 - INFO - ƶλ +2025-02-27 11:25:49 - INFO - ƶλ +2025-02-27 11:25:49 - INFO - ƶλ +2025-02-27 11:25:49 - INFO - ʶͼɹ +2025-02-27 11:25:49 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:49 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 11:25:50 - INFO - ƶλλ +2025-02-27 11:25:50 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:51 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 11:25:53 - INFO - ƶλλ +2025-02-27 11:25:53 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.22547952060893","m1":"2467.804251328182","m2":"606.7268466382101","m3":"2.0010623285224227","m4":"-8.755895628074226","m5":"-88.05981350259376","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:25:53 - INFO - ƶλ:ֱߣX:204.22547952060893-Y:2467.804251328182-Z:606.7268466382101-U:2.0010623285224227-V:-8.755895628074226-W:-88.05981350259376 +2025-02-27 11:25:53 - INFO - Ͷͣ +2025-02-27 11:25:53 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","1"]} +2025-02-27 11:26:02 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","0"]} +2025-02-27 11:26:02 - INFO - Ͷϼ +2025-02-27 11:26:02 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:26:02 - INFO - лԶ״̬ +2025-02-27 11:26:06 - INFO - ƶλλ +2025-02-27 11:26:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.22547952060893","m1":"2467.804251328182","m2":"256.7268466382101","m3":"2.0010623285224227","m4":"-8.755895628074226","m5":"-88.05981350259376","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:26:06 - INFO - ƶλ:ֱߣX:204.22547952060893-Y:2467.804251328182-Z:256.7268466382101-U:2.0010623285224227-V:-8.755895628074226-W:-88.05981350259376 +2025-02-27 11:26:07 - INFO - ƶץλ +2025-02-27 11:26:07 - INFO - ƶץλ +2025-02-27 11:26:07 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:08 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ƶץλ +2025-02-27 11:26:09 - INFO - ץϵλ +2025-02-27 11:26:10 - INFO - ץϳɹ +2025-02-27 11:26:10 - INFO - Ͷͣ +2025-02-27 11:26:11 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","1"]} +2025-02-27 11:26:11 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","0"]} +2025-02-27 11:26:11 - INFO - Ͷϼ +2025-02-27 11:26:11 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:26:11 - INFO - лԶ״̬ +2025-02-27 11:26:11 - INFO - ƶץλ +2025-02-27 11:26:11 - INFO - ץϵλ +2025-02-27 11:26:11 - INFO - ץϳɹ +2025-02-27 11:26:11 - INFO - ƶλ:ֱߣX:204.22547952060893-Y:2467.804251328182-Z:606.7268466382101-U:2.0010623285224227-V:-8.755895628074226-W:-88.05981350259376 +2025-02-27 11:26:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.22547952060893","m1":"2467.804251328182","m2":"606.7268466382101","m3":"2.0010623285224227","m4":"-8.755895628074226","m5":"-88.05981350259376","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:26:12 - INFO - Ͷͣ +2025-02-27 11:26:12 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","1"]} +2025-02-27 11:26:15 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","0"]} +2025-02-27 11:26:15 - INFO - Ͷϼ +2025-02-27 11:26:15 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:26:15 - INFO - лԶ״̬ +2025-02-27 11:26:15 - INFO - ƶλλ +2025-02-27 11:26:16 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 11:26:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:26:21 - INFO - ƶλλ +2025-02-27 11:26:21 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 11:26:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:26:24 - INFO - Ͷͣ +2025-02-27 11:26:24 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","1"]} +2025-02-27 11:26:31 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","0"]} +2025-02-27 11:26:31 - INFO - Ͷϼ +2025-02-27 11:26:31 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 11:26:31 - INFO - лԶ״̬ +2025-02-27 11:26:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.492554","m1":"1765.717407","m2":"1832.536255","m3":"1.57702","m4":"4.174215","m5":"-87.506783","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:26:31 - INFO - ƶƴλ +2025-02-27 11:26:31 - INFO - ƶλ:ֱߣX:1430.492554-Y:1765.717407-Z:1832.536255-U:1.57702-V:4.174215-W:-87.506783 +2025-02-27 11:26:31 - INFO - ƶƴλ +2025-02-27 11:26:31 - INFO - ƶλ:ֱߣX:1375.01416-Y:1702.021973-Z:2117.369385-U:8.211453-V:4.232689-W:-100.153625 +2025-02-27 11:26:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:26:32 - INFO - Ͷͣ +2025-02-27 11:26:32 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","1"]} +2025-02-27 11:32:25 - INFO - ƶλ:ֱߣm0:1375.01416-m2:1702.021973-m3:2117.369385-m4:8.211453-m5:4.232689-m6:-100.153625 +2025-02-27 11:32:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1375.01416","m1":"1702.021973","m2":"2117.369385","m3":"8.211453","m4":"4.232689","m5":"-100.153625","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"0","tool":"2"}]} +2025-02-27 11:33:02 - INFO - ƶλ:ֱߣm0:1556.585449-m2:1663.580322-m3:2331.091553-m4:48.062508-m5:-0.372809-m6:-96.427994 +2025-02-27 11:33:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"0","tool":"2"}]} +2025-02-27 11:33:02 - INFO - ƶλ:ֱߣm0:1556.585449-m2:1663.580322-m3:2331.091553-m4:48.062508-m5:-0.372809-m6:-96.427994 +2025-02-27 11:33:03 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"0","tool":"2"}]} +2025-02-27 11:33:15 - INFO - ƶλ:ֱߣm0:1244.785156-m2:1848.819702-m3:2307.201416-m4:-34.622036-m5:19.413801-m6:-129.918442 +2025-02-27 11:33:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1244.785156","m1":"1848.819702","m2":"2307.201416","m3":"-34.622036","m4":"19.413801","m5":"-129.918442","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"0","tool":"2"}]} +2025-02-27 11:33:50 - INFO - ƶλ:ֱߣm0:1364.639404-m2:1892.286743-m3:2276.495361-m4:11.343127-m5:48.749588-m6:-110.22995 +2025-02-27 11:33:50 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"0","tool":"2"}]} +2025-02-27 11:34:02 - INFO - ƶλ:ֱߣm0:2180.736328-m2:356.33316-m3:1850.0-m4:5.812903-m5:5.431066-m6:-168.01712 +2025-02-27 11:34:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"0","tool":"2"}]} +2025-02-27 11:34:10 - INFO - +2025-02-27 11:34:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:34:10 - INFO - ʼλ +2025-02-27 11:34:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:34:11 - INFO - IO: 21 +2025-02-27 11:34:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:11 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 11:34:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:11 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 11:34:17 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:17 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 11:34:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:21 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 11:34:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:27 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 11:34:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:31 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 11:34:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:34 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 11:34:37 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:37 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 11:34:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:42 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 11:34:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:45 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 11:34:50 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:51 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:34:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:55 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:34:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:55 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 11:34:59 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:34:59 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 11:35:04 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 11:35:05 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 11:35:05 - INFO - IO: 20 +2025-02-27 11:35:20 - INFO - +2025-02-27 11:35:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:35:20 - INFO - Ͷֹͣ +2025-02-27 11:35:21 - INFO - һȷ +2025-02-27 11:35:21 - INFO - Ӧ1:ͶϿʼ +2025-02-27 11:35:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:35:22 - INFO - IO: 21 +2025-02-27 11:35:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 11:35:27 - INFO - IO: 20 +2025-02-27 11:35:27 - INFO - ͶϿʼ +2025-02-27 11:35:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:27 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 11:35:27 - INFO - ͶϿʼ +2025-02-27 11:35:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:27 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 11:35:29 - INFO - ƶλλ +2025-02-27 11:35:29 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 11:35:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:32 - INFO - ƶλλ +2025-02-27 11:35:33 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:35:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:33 - INFO - ǷȫͶ +2025-02-27 11:35:33 - INFO - ǷȫͶ +2025-02-27 11:35:33 - INFO - ǷȫͶ +2025-02-27 11:35:33 - INFO - ǷȫͶ +2025-02-27 11:35:33 - INFO - ǷȫͶ +2025-02-27 11:35:33 - INFO - ǷȫͶ +2025-02-27 11:35:33 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:34 - INFO - ǷȫͶ +2025-02-27 11:35:35 - INFO - ǷȫͶ +2025-02-27 11:35:35 - INFO - ǷȫͶ +2025-02-27 11:35:35 - INFO - ǷȫͶ +2025-02-27 11:35:35 - INFO - ǷȫͶ +2025-02-27 11:35:35 - INFO - ǷȫͶ +2025-02-27 11:35:35 - INFO - ǷȫͶ +2025-02-27 11:35:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:35 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:35:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:36 - INFO - ǷȫͶ +2025-02-27 11:35:36 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:35:36 - INFO - ƶλ +2025-02-27 11:35:36 - INFO - ƶλ +2025-02-27 11:35:36 - INFO - ƶλ +2025-02-27 11:35:36 - INFO - ƶλ +2025-02-27 11:35:36 - INFO - ƶλ +2025-02-27 11:35:36 - INFO - ʶͼɹ +2025-02-27 11:35:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:37 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:35:37 - INFO - ƶλ +2025-02-27 11:35:37 - INFO - ƶλ +2025-02-27 11:35:37 - INFO - ƶλ +2025-02-27 11:35:37 - INFO - ƶλ +2025-02-27 11:35:37 - INFO - ƶλ +2025-02-27 11:35:37 - INFO - ʶͼɹ +2025-02-27 11:35:37 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:37 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 11:35:39 - INFO - ƶλλ +2025-02-27 11:35:39 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 11:35:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:41 - INFO - ƶλλ +2025-02-27 11:35:41 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"206.32190181851763","m1":"2465.9817604177306","m2":"598.9421074230547","m3":"1.3952503932897065","m4":"-8.54945832551991","m5":"-88.5847474015918","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:42 - INFO - ƶλ:ֱߣX:206.32190181851763-Y:2465.9817604177306-Z:598.9421074230547-U:1.3952503932897065-V:-8.54945832551991-W:-88.5847474015918 +2025-02-27 11:35:45 - INFO - ƶλλ +2025-02-27 11:35:45 - INFO - ƶλ:ֱߣX:206.32190181851763-Y:2465.9817604177306-Z:248.94210742305467-U:1.3952503932897065-V:-8.54945832551991-W:-88.5847474015918 +2025-02-27 11:35:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"206.32190181851763","m1":"2465.9817604177306","m2":"248.94210742305467","m3":"1.3952503932897065","m4":"-8.54945832551991","m5":"-88.5847474015918","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:46 - INFO - ƶץλ +2025-02-27 11:35:46 - INFO - ƶץλ +2025-02-27 11:35:46 - INFO - ƶץλ +2025-02-27 11:35:46 - INFO - ƶץλ +2025-02-27 11:35:46 - INFO - ƶץλ +2025-02-27 11:35:46 - INFO - ƶץλ +2025-02-27 11:35:46 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:47 - INFO - ƶץλ +2025-02-27 11:35:48 - INFO - ץϵλ +2025-02-27 11:35:48 - INFO - ץϳɹ +2025-02-27 11:35:49 - INFO - ƶץλ +2025-02-27 11:35:49 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"206.32190181851763","m1":"2465.9817604177306","m2":"598.9421074230547","m3":"1.3952503932897065","m4":"-8.54945832551991","m5":"-88.5847474015918","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:50 - INFO - ץϵλ +2025-02-27 11:35:50 - INFO - ץϳɹ +2025-02-27 11:35:50 - INFO - ƶλ:ֱߣX:206.32190181851763-Y:2465.9817604177306-Z:598.9421074230547-U:1.3952503932897065-V:-8.54945832551991-W:-88.5847474015918 +2025-02-27 11:35:50 - INFO - ƶλλ +2025-02-27 11:35:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:51 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 11:35:53 - INFO - ƶλλ +2025-02-27 11:35:53 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:54 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 11:35:56 - INFO - ƶƴλ +2025-02-27 11:35:56 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:56 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 11:35:56 - INFO - ƶƴλ +2025-02-27 11:35:56 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:35:57 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 11:36:00 - INFO - ҡ +2025-02-27 11:36:00 - INFO - ҡ +2025-02-27 11:36:00 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:01 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 11:36:04 - INFO - ҡ +2025-02-27 11:36:04 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 11:36:04 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:09 - INFO - ҡ +2025-02-27 11:36:09 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 11:36:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:13 - INFO - ҡ +2025-02-27 11:36:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:13 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 11:36:18 - INFO - ƶӿմ +2025-02-27 11:36:23 - INFO - ƶӿմ +2025-02-27 11:36:23 - INFO - ƶӿմ +2025-02-27 11:36:25 - INFO - ƶӿմ +2025-02-27 11:36:25 - INFO - ʣͶϴ998 +2025-02-27 11:36:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:26 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:36:26 - INFO - ƶλ +2025-02-27 11:36:26 - INFO - ƶλ +2025-02-27 11:36:26 - INFO - ƶλ +2025-02-27 11:36:26 - INFO - ƶλ +2025-02-27 11:36:26 - INFO - ƶλ +2025-02-27 11:36:26 - INFO - ʶͼɹ +2025-02-27 11:36:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:27 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 11:36:29 - INFO - ƶλλ +2025-02-27 11:36:29 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 11:36:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:32 - INFO - ƶλλ +2025-02-27 11:36:32 - INFO - ƶλ:ֱߣX:201.84319441219753-Y:2463.68596231618-Z:599.171553057461-U:1.8863542336011196-V:-7.991113498103092-W:-88.57269287909229 +2025-02-27 11:36:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"201.84319441219753","m1":"2463.68596231618","m2":"599.171553057461","m3":"1.8863542336011196","m4":"-7.991113498103092","m5":"-88.57269287909229","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:34 - INFO - +2025-02-27 11:36:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:36:34 - INFO - Ͷֹͣ +2025-02-27 11:36:37 - INFO - +2025-02-27 11:36:37 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:36:37 - INFO - ʼλ +2025-02-27 11:36:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:36:37 - ERROR - еδʵ·ߵƶδѰҵ·λ +2025-02-27 11:36:37 - INFO - IO: 21 +2025-02-27 11:36:37 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 11:36:37 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:39 - INFO - +2025-02-27 11:36:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 11:36:40 - INFO - ʼλ +2025-02-27 11:36:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 11:36:40 - ERROR - еδʵ·ߵƶδѰҵ·λ +2025-02-27 11:36:40 - INFO - IO: 21 +2025-02-27 11:36:40 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 11:36:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:43 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 11:36:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:46 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 11:36:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:51 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:36:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:56 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 11:36:56 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:36:56 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 11:37:00 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 11:37:00 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:37:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 11:37:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 11:37:05 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 11:37:05 - INFO - IO: 20 +2025-02-27 12:59:59 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} +2025-02-27 13:00:00 - INFO - л +2025-02-27 13:00:00 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} +2025-02-27 13:00:00 - INFO - лԶ״̬ +2025-02-27 13:00:02 - INFO - һȷ +2025-02-27 13:00:02 - INFO - Ӧ1:ͶϿʼ +2025-02-27 13:00:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 13:00:02 - INFO - IO: 21 +2025-02-27 13:00:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 13:00:07 - INFO - IO: 20 +2025-02-27 13:00:07 - INFO - ͶϿʼ +2025-02-27 13:00:07 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 13:00:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:07 - INFO - ͶϿʼ +2025-02-27 13:00:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:07 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 13:00:09 - INFO - ƶλλ +2025-02-27 13:00:09 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 13:00:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:13 - INFO - ƶλλ +2025-02-27 13:00:13 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:00:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:13 - INFO - ǷȫͶ +2025-02-27 13:00:13 - INFO - ǷȫͶ +2025-02-27 13:00:13 - INFO - ǷȫͶ +2025-02-27 13:00:13 - INFO - ǷȫͶ +2025-02-27 13:00:13 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:14 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:15 - INFO - ǷȫͶ +2025-02-27 13:00:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:16 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:00:16 - INFO - ǷȫͶ +2025-02-27 13:00:16 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:00:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:16 - INFO - ƶλ +2025-02-27 13:00:16 - INFO - ƶλ +2025-02-27 13:00:16 - INFO - ƶλ +2025-02-27 13:00:16 - INFO - ƶλ +2025-02-27 13:00:17 - INFO - ƶλ +2025-02-27 13:00:17 - INFO - ʶͼɹ +2025-02-27 13:00:17 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:17 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:00:17 - INFO - ƶλ +2025-02-27 13:00:17 - INFO - ƶλ +2025-02-27 13:00:17 - INFO - ƶλ +2025-02-27 13:00:17 - INFO - ƶλ +2025-02-27 13:00:17 - INFO - ƶλ +2025-02-27 13:00:18 - INFO - ʶͼɹ +2025-02-27 13:00:18 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:18 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 13:00:19 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:19 - INFO - ƶλλ +2025-02-27 13:00:19 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 13:00:21 - INFO - ƶλλ +2025-02-27 13:00:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"292.40066213174975","m1":"2377.0080873898514","m2":"610.8322231879647","m3":"-3.1385380936123597","m4":"-5.924103962114677","m5":"-83.4255813748701","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:22 - INFO - ƶλ:ֱߣX:292.40066213174975-Y:2377.0080873898514-Z:610.8322231879647-U:-3.1385380936123597-V:-5.924103962114677-W:-83.4255813748701 +2025-02-27 13:00:24 - INFO - ƶλλ +2025-02-27 13:00:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"292.40066213174975","m1":"2377.0080873898514","m2":"260.8322231879647","m3":"-3.1385380936123597","m4":"-5.924103962114677","m5":"-83.4255813748701","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:25 - INFO - ƶλ:ֱߣX:292.40066213174975-Y:2377.0080873898514-Z:260.8322231879647-U:-3.1385380936123597-V:-5.924103962114677-W:-83.4255813748701 +2025-02-27 13:00:26 - INFO - ƶץλ +2025-02-27 13:00:26 - INFO - ƶץλ +2025-02-27 13:00:26 - INFO - ƶץλ +2025-02-27 13:00:26 - INFO - ƶץλ +2025-02-27 13:00:26 - INFO - ƶץλ +2025-02-27 13:00:26 - INFO - ƶץλ +2025-02-27 13:00:26 - INFO - ƶץλ +2025-02-27 13:00:26 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:27 - INFO - ƶץλ +2025-02-27 13:00:28 - INFO - ץϵλ +2025-02-27 13:00:28 - INFO - ץϳɹ +2025-02-27 13:00:29 - INFO - ƶץλ +2025-02-27 13:00:29 - INFO - ץϵλ +2025-02-27 13:00:29 - INFO - ץϳɹ +2025-02-27 13:00:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"292.40066213174975","m1":"2377.0080873898514","m2":"610.8322231879647","m3":"-3.1385380936123597","m4":"-5.924103962114677","m5":"-83.4255813748701","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:30 - INFO - ƶλ:ֱߣX:292.40066213174975-Y:2377.0080873898514-Z:610.8322231879647-U:-3.1385380936123597-V:-5.924103962114677-W:-83.4255813748701 +2025-02-27 13:00:30 - INFO - ƶλλ +2025-02-27 13:00:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:31 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 13:00:33 - INFO - ƶλλ +2025-02-27 13:00:33 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 13:00:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:36 - INFO - ƶƴλ +2025-02-27 13:00:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:36 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 13:00:36 - INFO - ƶƴλ +2025-02-27 13:00:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:36 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 13:00:40 - INFO - ҡ +2025-02-27 13:00:40 - INFO - ҡ +2025-02-27 13:00:40 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 13:00:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:44 - INFO - ҡ +2025-02-27 13:00:44 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 13:00:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:49 - INFO - ҡ +2025-02-27 13:00:49 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 13:00:49 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:53 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:00:53 - INFO - ҡ +2025-02-27 13:00:53 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 13:00:58 - INFO - ƶӿմ +2025-02-27 13:01:03 - INFO - ƶӿմ +2025-02-27 13:01:03 - INFO - ƶӿմ +2025-02-27 13:01:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:05 - INFO - ƶӿմ +2025-02-27 13:01:05 - INFO - ʣͶϴ998 +2025-02-27 13:01:05 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:01:06 - INFO - ƶλ +2025-02-27 13:01:06 - INFO - ƶλ +2025-02-27 13:01:06 - INFO - ƶλ +2025-02-27 13:01:06 - INFO - ƶλ +2025-02-27 13:01:06 - INFO - ʶͼɹ +2025-02-27 13:01:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:06 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 13:01:09 - INFO - ƶλλ +2025-02-27 13:01:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:09 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 13:01:11 - INFO - ƶλλ +2025-02-27 13:01:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"288.7251951110562","m1":"2386.7919839391116","m2":"602.0424571515911","m3":"-2.46753031578002","m4":"-7.650132750868385","m5":"-83.55273632344696","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:12 - INFO - ƶλ:ֱߣX:288.7251951110562-Y:2386.7919839391116-Z:602.0424571515911-U:-2.46753031578002-V:-7.650132750868385-W:-83.55273632344696 +2025-02-27 13:01:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"288.7251951110562","m1":"2386.7919839391116","m2":"252.04245715159104","m3":"-2.46753031578002","m4":"-7.650132750868385","m5":"-83.55273632344696","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:15 - INFO - ƶλλ +2025-02-27 13:01:15 - INFO - ƶλ:ֱߣX:288.7251951110562-Y:2386.7919839391116-Z:252.04245715159104-U:-2.46753031578002-V:-7.650132750868385-W:-83.55273632344696 +2025-02-27 13:01:16 - INFO - ƶץλ +2025-02-27 13:01:16 - INFO - ƶץλ +2025-02-27 13:01:16 - INFO - ƶץλ +2025-02-27 13:01:16 - INFO - ƶץλ +2025-02-27 13:01:16 - INFO - ƶץλ +2025-02-27 13:01:16 - INFO - ƶץλ +2025-02-27 13:01:17 - INFO - ƶץλ +2025-02-27 13:01:17 - INFO - ƶץλ +2025-02-27 13:01:17 - INFO - ƶץλ +2025-02-27 13:01:17 - INFO - ƶץλ +2025-02-27 13:01:17 - INFO - ƶץλ +2025-02-27 13:01:17 - INFO - ƶץλ +2025-02-27 13:01:17 - INFO - ƶץλ +2025-02-27 13:01:17 - INFO - ץϵλ +2025-02-27 13:01:17 - INFO - ץϳɹ +2025-02-27 13:01:19 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"288.7251951110562","m1":"2386.7919839391116","m2":"602.0424571515911","m3":"-2.46753031578002","m4":"-7.650132750868385","m5":"-83.55273632344696","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:19 - INFO - ƶץλ +2025-02-27 13:01:19 - INFO - ץϵλ +2025-02-27 13:01:19 - INFO - ץϳɹ +2025-02-27 13:01:19 - INFO - ƶλ:ֱߣX:288.7251951110562-Y:2386.7919839391116-Z:602.0424571515911-U:-2.46753031578002-V:-7.650132750868385-W:-83.55273632344696 +2025-02-27 13:01:20 - INFO - ƶλλ +2025-02-27 13:01:20 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 13:01:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:23 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:23 - INFO - ƶλλ +2025-02-27 13:01:23 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 13:01:25 - INFO - ƶƴλ +2025-02-27 13:01:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:26 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 13:01:26 - INFO - ƶƴλ +2025-02-27 13:01:26 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 13:01:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:30 - INFO - ҡ +2025-02-27 13:01:30 - INFO - ҡ +2025-02-27 13:01:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:30 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 13:01:33 - INFO - ҡ +2025-02-27 13:01:34 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 13:01:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:38 - INFO - ҡ +2025-02-27 13:01:39 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 13:01:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:42 - INFO - ҡ +2025-02-27 13:01:42 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 13:01:48 - INFO - ƶӿմ +2025-02-27 13:01:53 - INFO - ƶӿմ +2025-02-27 13:01:53 - INFO - ƶӿմ +2025-02-27 13:01:55 - INFO - ƶӿմ +2025-02-27 13:01:55 - INFO - ʣͶϴ997 +2025-02-27 13:01:55 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:01:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:55 - INFO - ƶλ +2025-02-27 13:01:55 - INFO - ƶλ +2025-02-27 13:01:55 - INFO - ƶλ +2025-02-27 13:01:56 - INFO - ƶλ +2025-02-27 13:01:56 - INFO - ʶͼɹ +2025-02-27 13:01:56 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:56 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 13:01:58 - INFO - ƶλλ +2025-02-27 13:01:59 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:01:59 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 13:02:01 - INFO - ƶλλ +2025-02-27 13:02:01 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"293.0983041344571","m1":"2382.3899809193235","m2":"610.361867149288","m3":"-3.5754248884918662","m4":"-6.600633337951994","m5":"-82.8796047336313","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:01 - INFO - ƶλ:ֱߣX:293.0983041344571-Y:2382.3899809193235-Z:610.361867149288-U:-3.5754248884918662-V:-6.600633337951994-W:-82.8796047336313 +2025-02-27 13:02:04 - INFO - ƶλλ +2025-02-27 13:02:04 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"293.0983041344571","m1":"2382.3899809193235","m2":"260.36186714928795","m3":"-3.5754248884918662","m4":"-6.600633337951994","m5":"-82.8796047336313","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:04 - INFO - ƶλ:ֱߣX:293.0983041344571-Y:2382.3899809193235-Z:260.36186714928795-U:-3.5754248884918662-V:-6.600633337951994-W:-82.8796047336313 +2025-02-27 13:02:05 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:06 - INFO - ƶץλ +2025-02-27 13:02:07 - INFO - ƶץλ +2025-02-27 13:02:07 - INFO - ƶץλ +2025-02-27 13:02:07 - INFO - ƶץλ +2025-02-27 13:02:07 - INFO - ץϵλ +2025-02-27 13:02:07 - INFO - ץϳɹ +2025-02-27 13:02:09 - INFO - ƶץλ +2025-02-27 13:02:09 - INFO - ץϵλ +2025-02-27 13:02:09 - INFO - ץϳɹ +2025-02-27 13:02:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"293.0983041344571","m1":"2382.3899809193235","m2":"610.361867149288","m3":"-3.5754248884918662","m4":"-6.600633337951994","m5":"-82.8796047336313","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:09 - INFO - ƶλ:ֱߣX:293.0983041344571-Y:2382.3899809193235-Z:610.361867149288-U:-3.5754248884918662-V:-6.600633337951994-W:-82.8796047336313 +2025-02-27 13:02:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:10 - INFO - ƶλλ +2025-02-27 13:02:10 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 13:02:13 - INFO - ƶλλ +2025-02-27 13:02:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:13 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 13:02:15 - INFO - ƶƴλ +2025-02-27 13:02:15 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 13:02:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:16 - INFO - ƶƴλ +2025-02-27 13:02:16 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 13:02:19 - INFO - ҡ +2025-02-27 13:02:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:20 - INFO - ҡ +2025-02-27 13:02:20 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 13:02:23 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:23 - INFO - ҡ +2025-02-27 13:02:23 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 13:02:28 - INFO - ҡ +2025-02-27 13:02:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:28 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 13:02:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:32 - INFO - ҡ +2025-02-27 13:02:32 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 13:02:37 - INFO - ƶӿմ +2025-02-27 13:02:43 - INFO - ƶӿմ +2025-02-27 13:02:43 - INFO - ƶӿմ +2025-02-27 13:02:45 - INFO - ƶӿմ +2025-02-27 13:02:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:45 - INFO - ʣͶϴ996 +2025-02-27 13:02:45 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:02:45 - INFO - ƶλ +2025-02-27 13:02:45 - INFO - ƶλ +2025-02-27 13:02:45 - INFO - ƶλ +2025-02-27 13:02:45 - INFO - ƶλ +2025-02-27 13:02:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:46 - INFO - ʶͼɹ +2025-02-27 13:02:46 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 13:02:48 - INFO - ƶλλ +2025-02-27 13:02:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:48 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 13:02:51 - INFO - ƶλλ +2025-02-27 13:02:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"290.3079575307602","m1":"2380.18494630754","m2":"610.3850199399927","m3":"-3.440757362530894","m4":"-6.912037165558269","m5":"-83.5439428643654","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:51 - INFO - ƶλ:ֱߣX:290.3079575307602-Y:2380.18494630754-Z:610.3850199399927-U:-3.440757362530894-V:-6.912037165558269-W:-83.5439428643654 +2025-02-27 13:02:54 - INFO - ƶλλ +2025-02-27 13:02:54 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"290.3079575307602","m1":"2380.18494630754","m2":"260.38501993999273","m3":"-3.440757362530894","m4":"-6.912037165558269","m5":"-83.5439428643654","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:54 - INFO - ƶλ:ֱߣX:290.3079575307602-Y:2380.18494630754-Z:260.38501993999273-U:-3.440757362530894-V:-6.912037165558269-W:-83.5439428643654 +2025-02-27 13:02:55 - INFO - ƶץλ +2025-02-27 13:02:55 - INFO - ƶץλ +2025-02-27 13:02:55 - INFO - ƶץλ +2025-02-27 13:02:56 - INFO - ƶץλ +2025-02-27 13:02:56 - INFO - ƶץλ +2025-02-27 13:02:56 - INFO - ƶץλ +2025-02-27 13:02:56 - INFO - ƶץλ +2025-02-27 13:02:56 - INFO - ƶץλ +2025-02-27 13:02:56 - INFO - ƶץλ +2025-02-27 13:02:56 - INFO - ƶץλ +2025-02-27 13:02:56 - INFO - ƶץλ +2025-02-27 13:02:57 - INFO - ƶץλ +2025-02-27 13:02:57 - INFO - ƶץλ +2025-02-27 13:02:57 - INFO - ץϵλ +2025-02-27 13:02:57 - INFO - ץϳɹ +2025-02-27 13:02:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"290.3079575307602","m1":"2380.18494630754","m2":"610.3850199399927","m3":"-3.440757362530894","m4":"-6.912037165558269","m5":"-83.5439428643654","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:02:59 - INFO - ƶץλ +2025-02-27 13:02:59 - INFO - ץϵλ +2025-02-27 13:02:59 - INFO - ץϳɹ +2025-02-27 13:02:59 - INFO - ƶλ:ֱߣX:290.3079575307602-Y:2380.18494630754-Z:610.3850199399927-U:-3.440757362530894-V:-6.912037165558269-W:-83.5439428643654 +2025-02-27 13:02:59 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:00 - INFO - ƶλλ +2025-02-27 13:03:00 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 13:03:02 - INFO - ƶλλ +2025-02-27 13:03:03 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:03 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 13:03:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:05 - INFO - ƶƴλ +2025-02-27 13:03:05 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 13:03:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:05 - INFO - ƶƴλ +2025-02-27 13:03:06 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 13:03:09 - INFO - ҡ +2025-02-27 13:03:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:10 - INFO - ҡ +2025-02-27 13:03:10 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 13:03:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:12 - INFO - ҡ +2025-02-27 13:03:12 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 13:03:15 - INFO - ҡ +2025-02-27 13:03:16 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 13:03:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:19 - INFO - ҡ +2025-02-27 13:03:19 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 13:03:19 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:22 - INFO - ƶӿմ +2025-02-27 13:03:27 - INFO - ƶӿմ +2025-02-27 13:03:27 - INFO - ƶӿմ +2025-02-27 13:03:29 - INFO - ƶӿմ +2025-02-27 13:03:29 - INFO - ʣͶϴ995 +2025-02-27 13:03:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:30 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:03:30 - INFO - ƶλ +2025-02-27 13:03:30 - INFO - ƶλ +2025-02-27 13:03:30 - INFO - ƶλ +2025-02-27 13:03:30 - INFO - ƶλ +2025-02-27 13:03:30 - INFO - ʶͼɹ +2025-02-27 13:03:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:30 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 13:03:32 - INFO - ƶλλ +2025-02-27 13:03:32 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 13:03:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:34 - INFO - ƶλλ +2025-02-27 13:03:34 - INFO - ƶλ:ֱߣX:292.5437533728209-Y:2379.8563684011783-Z:606.5309399613571-U:-3.36043637102124-V:-6.516952311249702-W:-82.97971148099012 +2025-02-27 13:03:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"292.5437533728209","m1":"2379.8563684011783","m2":"606.5309399613571","m3":"-3.36043637102124","m4":"-6.516952311249702","m5":"-82.97971148099012","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:36 - INFO - ƶλλ +2025-02-27 13:03:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"292.5437533728209","m1":"2379.8563684011783","m2":"256.53093996135715","m3":"-3.36043637102124","m4":"-6.516952311249702","m5":"-82.97971148099012","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:36 - INFO - ƶλ:ֱߣX:292.5437533728209-Y:2379.8563684011783-Z:256.53093996135715-U:-3.36043637102124-V:-6.516952311249702-W:-82.97971148099012 +2025-02-27 13:03:37 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:38 - INFO - ƶץλ +2025-02-27 13:03:39 - INFO - ץϵλ +2025-02-27 13:03:39 - INFO - ץϳɹ +2025-02-27 13:03:40 - INFO - ƶץλ +2025-02-27 13:03:40 - INFO - ץϵλ +2025-02-27 13:03:40 - INFO - ץϳɹ +2025-02-27 13:03:41 - INFO - ƶλ:ֱߣX:292.5437533728209-Y:2379.8563684011783-Z:606.5309399613571-U:-3.36043637102124-V:-6.516952311249702-W:-82.97971148099012 +2025-02-27 13:03:41 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"292.5437533728209","m1":"2379.8563684011783","m2":"606.5309399613571","m3":"-3.36043637102124","m4":"-6.516952311249702","m5":"-82.97971148099012","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:41 - INFO - ƶλλ +2025-02-27 13:03:41 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:42 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 13:03:43 - INFO - ƶλλ +2025-02-27 13:03:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:44 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 13:03:45 - INFO - ƶƴλ +2025-02-27 13:03:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:46 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 13:03:46 - INFO - ƶƴλ +2025-02-27 13:03:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:46 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 13:03:49 - INFO - ҡ +2025-02-27 13:03:49 - INFO - ҡ +2025-02-27 13:03:49 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 13:03:49 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:51 - INFO - ҡ +2025-02-27 13:03:52 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 13:03:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:55 - INFO - ҡ +2025-02-27 13:03:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:55 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 13:03:58 - INFO - ҡ +2025-02-27 13:03:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:03:58 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 13:04:01 - INFO - ƶӿմ +2025-02-27 13:04:07 - INFO - ƶӿմ +2025-02-27 13:04:07 - INFO - ƶӿմ +2025-02-27 13:04:09 - INFO - ƶӿմ +2025-02-27 13:04:09 - INFO - ʣͶϴ994 +2025-02-27 13:04:09 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:04:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:09 - INFO - ƶλ +2025-02-27 13:04:09 - INFO - ƶλ +2025-02-27 13:04:09 - INFO - ƶλ +2025-02-27 13:04:09 - INFO - ƶλ +2025-02-27 13:04:09 - INFO - ʶͼɹ +2025-02-27 13:04:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:10 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 13:04:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:12 - INFO - ƶλλ +2025-02-27 13:04:12 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 13:04:14 - INFO - ƶλλ +2025-02-27 13:04:14 - INFO - ƶλ:ֱߣX:293.0109582991261-Y:2386.591039227734-Z:605.8556384686439-U:-3.7215364124280366-V:-7.621136940557559-W:-82.98133329875483 +2025-02-27 13:04:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"293.0109582991261","m1":"2386.591039227734","m2":"605.8556384686439","m3":"-3.7215364124280366","m4":"-7.621136940557559","m5":"-82.98133329875483","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:16 - INFO - ƶλλ +2025-02-27 13:04:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"293.0109582991261","m1":"2386.591039227734","m2":"255.8556384686439","m3":"-3.7215364124280366","m4":"-7.621136940557559","m5":"-82.98133329875483","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:16 - INFO - ƶλ:ֱߣX:293.0109582991261-Y:2386.591039227734-Z:255.8556384686439-U:-3.7215364124280366-V:-7.621136940557559-W:-82.98133329875483 +2025-02-27 13:04:17 - INFO - ƶץλ +2025-02-27 13:04:17 - INFO - ƶץλ +2025-02-27 13:04:17 - INFO - ƶץλ +2025-02-27 13:04:17 - INFO - ƶץλ +2025-02-27 13:04:17 - INFO - ƶץλ +2025-02-27 13:04:17 - INFO - ƶץλ +2025-02-27 13:04:18 - INFO - ƶץλ +2025-02-27 13:04:18 - INFO - ƶץλ +2025-02-27 13:04:18 - INFO - ƶץλ +2025-02-27 13:04:18 - INFO - ƶץλ +2025-02-27 13:04:18 - INFO - ץϵλ +2025-02-27 13:04:18 - INFO - ץϳɹ +2025-02-27 13:04:20 - INFO - ƶץλ +2025-02-27 13:04:20 - INFO - ץϵλ +2025-02-27 13:04:20 - INFO - ץϳɹ +2025-02-27 13:04:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"293.0109582991261","m1":"2386.591039227734","m2":"605.8556384686439","m3":"-3.7215364124280366","m4":"-7.621136940557559","m5":"-82.98133329875483","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:20 - INFO - ƶλ:ֱߣX:293.0109582991261-Y:2386.591039227734-Z:605.8556384686439-U:-3.7215364124280366-V:-7.621136940557559-W:-82.98133329875483 +2025-02-27 13:04:21 - INFO - ƶλλ +2025-02-27 13:04:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:21 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 13:04:23 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:23 - INFO - ƶλλ +2025-02-27 13:04:23 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 13:04:25 - INFO - ƶƴλ +2025-02-27 13:04:25 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 13:04:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:25 - INFO - ƶƴλ +2025-02-27 13:04:25 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 13:04:28 - INFO - ҡ +2025-02-27 13:04:28 - INFO - ҡ +2025-02-27 13:04:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:28 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 13:04:31 - INFO - ҡ +2025-02-27 13:04:31 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 13:04:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:37 - INFO - ҡ +2025-02-27 13:04:37 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 13:04:37 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:41 - INFO - ҡ +2025-02-27 13:04:41 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 13:04:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"100","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:47 - INFO - ƶӿմ +2025-02-27 13:04:48 - INFO - +2025-02-27 13:04:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 13:04:48 - INFO - Ͷֹͣ +2025-02-27 13:04:56 - INFO - +2025-02-27 13:04:56 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 13:04:56 - INFO - Ͷֹͣ +2025-02-27 13:04:57 - INFO - +2025-02-27 13:04:57 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 13:04:57 - INFO - Ͷֹͣ +2025-02-27 13:04:57 - INFO - +2025-02-27 13:04:57 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 13:04:57 - INFO - Ͷֹͣ +2025-02-27 13:04:57 - INFO - +2025-02-27 13:04:57 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 13:04:57 - INFO - Ͷֹͣ +2025-02-27 13:04:58 - INFO - +2025-02-27 13:04:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 13:04:58 - INFO - ʼλ +2025-02-27 13:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 13:04:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:04:58 - INFO - IO: 21 +2025-02-27 13:04:59 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 13:04:59 - INFO - +2025-02-27 13:04:59 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} +2025-02-27 13:04:59 - INFO - ʼλ +2025-02-27 13:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"2","delay":"0"}]} +2025-02-27 13:05:00 - INFO - IO: 21 +2025-02-27 13:05:00 - INFO - ƶλ:ֱߣX:2180.736328-Y:356.33316-Z:1850.0-U:5.812903-V:5.431066-W:-168.01712 +2025-02-27 13:05:00 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"2180.736328","m1":"356.33316","m2":"1850.0","m3":"5.812903","m4":"5.431066","m5":"-168.01712","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1364.639404","m1":"1892.286743","m2":"2276.495361","m3":"11.343127","m4":"48.749588","m5":"-110.22995","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:02 - INFO - ƶλ:ֱߣX:1364.639404-Y:1892.286743-Z:2276.495361-U:11.343127-V:48.749588-W:-110.22995 +2025-02-27 13:05:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1331.740112","m1":"1787.211548","m2":"2307.181641","m3":"-34.621368","m4":"19.412609","m5":"-132.657135","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:09 - INFO - ƶλ:ֱߣX:1331.740112-Y:1787.211548-Z:2307.181641-U:-34.621368-V:19.412609-W:-132.657135 +2025-02-27 13:05:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1556.585449","m1":"1663.580322","m2":"2331.091553","m3":"48.062508","m4":"-0.372809","m5":"-96.427994","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:15 - INFO - ƶλ:ֱߣX:1556.585449-Y:1663.580322-Z:2331.091553-U:48.062508-V:-0.372809-W:-96.427994 +2025-02-27 13:05:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1339.699585","m1":"1702.385742","m2":"2197.976318","m3":"9.554496","m4":"7.15853","m5":"-99.243294","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:22 - INFO - ƶλ:ֱߣX:1339.699585-Y:1702.385742-Z:2197.976318-U:9.554496-V:7.15853-W:-99.243294 +2025-02-27 13:05:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1427.58313","m1":"1724.46875","m2":"1831.32312","m3":"1.923308","m4":"3.454441","m5":"-87.299934","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:28 - INFO - ƶλ:ֱߣX:1427.58313-Y:1724.46875-Z:1831.32312-U:1.923308-V:3.454441-W:-87.299934 +2025-02-27 13:05:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1430.494385","m1":"1765.716187","m2":"2050.0","m3":"1.57722","m4":"4.174088","m5":"-87.506218","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:31 - INFO - ƶλ:ֱߣX:1430.494385-Y:1765.716187-Z:2050.0-U:1.57722-V:4.174088-W:-87.506218 +2025-02-27 13:05:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"275.882446","m1":"2153.374023","m2":"2050.0","m3":"8.369349","m4":"1.971002","m5":"-108.256897","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:35 - INFO - ƶλ:ֱߣX:275.882446-Y:2153.374023-Z:2050.0-U:8.369349-V:1.971002-W:-108.256897 +2025-02-27 13:05:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"371.28418","m1":"1757.579224","m2":"2000.0","m3":"7.908469","m4":"6.585917","m5":"-95.263153","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:41 - INFO - ƶλ:ֱߣX:371.28418-Y:1757.579224-Z:2000.0-U:7.908469-V:6.585917-W:-95.263153 +2025-02-27 13:05:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1402.887451","m1":"1126.740479","m2":"2000.0","m3":"6.669909","m4":"7.899203","m5":"-151.361526","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:44 - INFO - ƶλ:ֱߣX:1402.887451-Y:1126.740479-Z:2000.0-U:6.669909-V:7.899203-W:-151.361526 +2025-02-27 13:05:50 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:50 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:05:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1765.864746","m1":"345.495361","m2":"2000.0","m3":"6.676573","m4":"7.941406","m5":"-179.064972","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:55 - INFO - ƶλ:ֱߣX:1765.864746-Y:345.495361-Z:2000.0-U:6.676573-V:7.941406-W:-179.064972 +2025-02-27 13:05:57 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"1351.092285","m1":"1188.34668","m2":"2000.151001","m3":"6.676482","m4":"7.941721","m5":"-148.802124","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:05:57 - INFO - ƶλ:ֱߣX:1351.092285-Y:1188.34668-Z:2000.151001-U:6.676482-V:7.941721-W:-148.802124 +2025-02-27 13:06:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"230.52298","m1":"1879.445435","m2":"2000.432495","m3":"3.915686","m4":"18.44486","m5":"-107.223564","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:06:03 - INFO - ƶλ:ֱߣX:230.52298-Y:1879.445435-Z:2000.432495-U:3.915686-V:18.44486-W:-107.223564 +2025-02-27 13:06:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"10","m0":"204.996765","m1":"1455.630493","m2":"2324.525146","m3":"6.460966","m4":"37.462826","m5":"-84.569252","ckStatus":"0x3F","speed":"80","delay":"0","smooth":"9","tool":"2"}]} +2025-02-27 13:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"0","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"2","delay":"0"}]} +2025-02-27 13:06:10 - INFO - ƶλ:ֱߣX:204.996765-Y:1455.630493-Z:2324.525146-U:6.460966-V:37.462826-W:-84.569252 +2025-02-27 13:06:10 - INFO - IO: 20 +2025-02-27 13:06:39 - ERROR - ޻ظ +2025-02-27 13:06:49 - ERROR - ޻ظ +2025-02-27 13:07:00 - ERROR - ޻ظ +2025-02-27 13:07:10 - ERROR - ޻ظ +2025-02-27 13:07:21 - ERROR - ޻ظ +2025-02-27 13:07:30 - INFO - ˳ϵͳ +2025-02-27 13:07:30 - ERROR - ޻ظ +2025-02-27 13:07:31 - ERROR - model