mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2025-12-17 13:01:12 +00:00
* Add LaiYu Liquid device integration and tests Introduce LaiYu Liquid device implementation, including backend, controllers, drivers, configuration, and resource files. Add hardware connection, tip pickup, and simplified test scripts, as well as experiment and registry configuration for LaiYu Liquid. Documentation and .gitignore for the device are also included. * feat(LaiYu_Liquid): 重构设备模块结构并添加硬件文档 refactor: 重新组织LaiYu_Liquid模块目录结构 docs: 添加SOPA移液器和步进电机控制指令文档 fix: 修正设备配置中的最大体积默认值 test: 新增工作台配置测试用例 chore: 删除过时的测试脚本和配置文件 * add * 重构: 将 LaiYu_Liquid.py 重命名为 laiyu_liquid_main.py 并更新所有导入引用 - 使用 git mv 将 LaiYu_Liquid.py 重命名为 laiyu_liquid_main.py - 更新所有相关文件中的导入引用 - 保持代码功能不变,仅改善命名一致性 - 测试确认所有导入正常工作 * 修复: 在 core/__init__.py 中添加 LaiYuLiquidBackend 导出 - 添加 LaiYuLiquidBackend 到导入列表 - 添加 LaiYuLiquidBackend 到 __all__ 导出列表 - 确保所有主要类都可以正确导入 * 修复大小写文件夹名字
25 lines
610 B
Python
25 lines
610 B
Python
"""
|
||
LaiYu_Liquid 控制器模块
|
||
|
||
该模块包含了LaiYu_Liquid液体处理工作站的高级控制器:
|
||
- 移液器控制器:提供液体处理的高级接口
|
||
- XYZ运动控制器:提供三轴运动的高级接口
|
||
"""
|
||
|
||
# 移液器控制器导入
|
||
from .pipette_controller import PipetteController
|
||
|
||
# XYZ运动控制器导入
|
||
from .xyz_controller import XYZController
|
||
|
||
__all__ = [
|
||
# 移液器控制器
|
||
"PipetteController",
|
||
|
||
# XYZ运动控制器
|
||
"XYZController",
|
||
]
|
||
|
||
__version__ = "1.0.0"
|
||
__author__ = "LaiYu_Liquid Controller Team"
|
||
__description__ = "LaiYu_Liquid 高级控制器集合" |