feat(battery): 更新电池工作站配置与物料布局

- 修改弹夹尺寸默认值,确保非空时使用实际值
- 调整new_cellconfig3c.json中设备位置和尺寸配置
- 更新CoinCellDeck的尺寸和原点坐标
-重新分配所有物料和弹夹的位置坐标
- 调整电解液缓存位和回收位坐标
- 更新物料板和tip box的布局位置
This commit is contained in:
calvincao
2025-11-10 21:40:02 +08:00
parent 44f830cf00
commit b97be6a5d4
3 changed files with 32 additions and 32 deletions

View File

@@ -55,9 +55,9 @@ class Magazine(ResourceStack):
def serialize(self) -> dict:
return {
**super().serialize(),
"size_x": self.size_x,
"size_y": self.size_y,
"size_z": self.size_z,
"size_x": self.size_x or 10.0,
"size_y": self.size_y or 10.0,
"size_z": self.size_z or 10.0,
"max_sheets": self.max_sheets,
}