Files
Uni-Lab-OS/unilabos/devices/resource_container/container.py
zhangshixiang ee576c9f6e 添加硬件
2025-07-25 12:17:35 +08:00

34 lines
849 B
Python

class HotelContainer:
def __init__(self, rotation: dict, device_config: dict ,**kwargs):
self.rotation = rotation
self.device_config = device_config
self.status = 'idle'
def get_rotation(self):
return self.rotation
class DeckContainer:
def __init__(self, rotation: dict, **kwargs):
self.rotation = rotation
self.status = 'idle'
def get_rotation(self):
return self.rotation
class TipRackContainer:
def __init__(self, rotation: dict, **kwargs):
self.rotation = rotation
self.status = 'idle'
def get_rotation(self):
return self.rotation
class PlateContainer:
def __init__(self, rotation: dict, **kwargs):
self.rotation = rotation
self.status = 'idle'
def get_rotation(self):
return self.rotation