添加硬件

This commit is contained in:
zhangshixiang
2025-07-25 12:17:35 +08:00
parent e7d90a8aae
commit ee576c9f6e
13 changed files with 13735 additions and 49 deletions

View File

@@ -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