mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-04 05:15:10 +00:00
Compare commits
3 Commits
b957ad2f71
...
dd5a7cab75
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd5a7cab75 | ||
|
|
39de3ac58e | ||
|
|
b99969278c |
File diff suppressed because it is too large
Load Diff
@@ -340,6 +340,17 @@ liquid_handler.biomek:
|
||||
none_keys: none_keys
|
||||
feedback: {}
|
||||
result: {}
|
||||
transfer_biomek:
|
||||
type: LiquidHandlerTransferBiomek
|
||||
goal:
|
||||
source: source,
|
||||
target: target,
|
||||
tip_rack: tip_rack,
|
||||
volume: volume,
|
||||
aspirate_techniques: aspirate_techniques,
|
||||
dispense_techniques: dispense_techniques,
|
||||
feedback: {}
|
||||
result: {}
|
||||
schema:
|
||||
type: object
|
||||
properties: {}
|
||||
|
||||
@@ -805,7 +805,9 @@ class ROS2DeviceNode:
|
||||
self.resource_tracker = DeviceNodeResourceTracker()
|
||||
|
||||
# use_pylabrobot_creator 使用 cls的包路径检测
|
||||
use_pylabrobot_creator = driver_class.__module__.startswith("pylabrobot") or driver_class.__name__ == "LiquidHandlerAbstract"
|
||||
use_pylabrobot_creator = (driver_class.__module__.startswith("pylabrobot")
|
||||
or driver_class.__name__ == "LiquidHandlerAbstract"
|
||||
or driver_class.__name__ == "LiquidHandlerBiomek")
|
||||
|
||||
# TODO: 要在创建之前预先请求服务器是否有当前id的物料,放到resource_tracker中,让pylabrobot进行创建
|
||||
# 创建设备类实例
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
Resource source
|
||||
Resource target
|
||||
Resource tip_rack
|
||||
string source
|
||||
string target
|
||||
string tip_rack
|
||||
float64 volume
|
||||
string aspirate_technique
|
||||
string dispense_technique
|
||||
|
||||
|
||||
Reference in New Issue
Block a user