mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-05 14:05:12 +00:00
34 lines
849 B
Python
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 |