mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-07 15:35:10 +00:00
添加硬件
This commit is contained in:
@@ -7,3 +7,28 @@ class HotelContainer:
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user