Update Prcxi

This commit is contained in:
Guangxin Zhang
2025-07-05 22:03:49 +08:00
parent b78c6c6ba9
commit bef44b2293

View File

@@ -130,7 +130,8 @@ class PRCXI9300:
# ---------------------------------------------------- 单点动作
def Load(
def Load(
self,
axis: str,
dosage: int,
plate_no: int,
@@ -147,7 +148,7 @@ def Load(
assist_fun4: str = "",
assist_fun5: str = "",
liquid_method: str = "NormalDispense"
) -> Dict[str, Any]:
) -> Dict[str, Any]:
return {
"StepAxis": axis,
"Function": "Load",
@@ -168,10 +169,8 @@ def Load(
"LiquidDispensingMethod": liquid_method
}
def Imbibing(
def Imbibing(
self,
axis: str,
dosage: int,
plate_no: int,
@@ -188,7 +187,7 @@ def Imbibing(
assist_fun4: str = "",
assist_fun5: str = "",
liquid_method: str = "NormalDispense"
) -> Dict[str, Any]:
) -> Dict[str, Any]:
return {
"StepAxis": axis,
"Function": "Imbibing",
@@ -210,7 +209,8 @@ def Imbibing(
}
def Tapping(
def Tapping(
self,
axis: str,
dosage: int,
plate_no: int,
@@ -227,7 +227,7 @@ def Tapping(
assist_fun4: str = "",
assist_fun5: str = "",
liquid_method: str = "NormalDispense"
) -> Dict[str, Any]:
) -> Dict[str, Any]:
return {
"StepAxis": axis,
"Function": "Tapping",
@@ -249,7 +249,8 @@ def Tapping(
}
def Blending(
def Blending(
self,
axis: str,
dosage: int,
plate_no: int,
@@ -266,7 +267,7 @@ def Blending(
assist_fun4: str = "",
assist_fun5: str = "",
liquid_method: str = "NormalDispense"
) -> Dict[str, Any]:
) -> Dict[str, Any]:
return {
"StepAxis": axis,
"Function": "Blending",
@@ -287,7 +288,8 @@ def Blending(
"LiquidDispensingMethod": liquid_method
}
def UnLoad(
def UnLoad(
self,
axis: str,
dosage: int,
plate_no: int,
@@ -304,7 +306,7 @@ def UnLoad(
assist_fun4: str = "",
assist_fun5: str = "",
liquid_method: str = "NormalDispense"
) -> Dict[str, Any]:
) -> Dict[str, Any]:
return {
"StepAxis": axis,
"Function": "UnLoad",