Skip to content

Commit 8e5e272

Browse files
author
andy
committed
apply compensation for 8ch
1 parent f2ffac9 commit 8e5e272

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ot3_testing/test_config/pipette_leveling_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ class CalibrateMethod(enum.Enum):
6363
}
6464

6565
SlotLocationCH8 = {"Y-C1-Left": {"Point": Point(215.42, 198.33, 299.16), "compensation": {"rear": 0, "front": 0}},
66-
"Y-C1-Right": {"Point": Point(172.07, 197.18, 299.16), "compensation": {"rear": 0, "front": 0}},
67-
"Y-C3-Right": {"Point": Point(499.83, 197.18, 299.16), "compensation": {"rear": 0, "front": 0}},
68-
"Y-A2-Right": {"Point": Point(335.94, 412.22, 299.16), "compensation": {"rear": 0, "front": 0}},
66+
"Y-C1-Right": {"Point": Point(172.07, 197.18, 299.16), "compensation": {"rear": 0, "front": 0.045}},
67+
"Y-C3-Right": {"Point": Point(499.83, 197.18, 299.16), "compensation": {"rear": 0, "front": 0.029}},
68+
"Y-A2-Right": {"Point": Point(335.94, 412.22, 299.16), "compensation": {"rear": 0, "front": 0.050}},
6969
"UninstallPos": {"Point": Point(223, 203, 500), "compensation": 0}
7070
}

ot3_testing/tests/zstage_leveling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ async def run_z_stage_test(self):
196196

197197
await self.api.home()
198198

199-
input("run test")
199+
input("Run Test (开始测试)?")
200200
# run test
201201
for mount in [Mount.RIGHT, Mount.LEFT]:
202202
self.mount = mount
@@ -215,5 +215,5 @@ async def run_z_stage_test(self):
215215
if __name__ == '__main__':
216216
import asyncio
217217

218-
obj = ZStageLeveling(ZStagePoint, robot_ip="192.168.6.33")
218+
obj = ZStageLeveling(ZStagePoint, robot_ip="192.168.6.51")
219219
asyncio.run(obj.run_z_stage_test())

0 commit comments

Comments
 (0)