diff --git a/docs/api/models.html b/docs/api/models.html
index 435bc1d..fc24f30 100644
--- a/docs/api/models.html
+++ b/docs/api/models.html
@@ -2263,7 +2263,7 @@
-
def clone(
self: ~MODEL, pk: Any = <object object at 0x1036d3c60>)
+
def clone(
self: ~MODEL, pk: Any = <object object at 0x1056d3c60>)
diff --git a/docs/hal/board.html b/docs/hal/board.html
index dc88acd..18ce8e3 100644
--- a/docs/hal/board.html
+++ b/docs/hal/board.html
@@ -1064,6 +1064,7 @@
Index
@@ -1155,6 +1156,8 @@
openoligo.hal.board module
air_pressure: Switch
liquid_regulator_err: DigitalSensor
air_regulator_err: DigitalSensor
+
server_led: Switch
+
runner_led: Switch
fixed_pinout: FixedPinoutDict = {
@@ -1169,6 +1172,17 @@
openoligo.hal.board module
"air_pressure": Switch(gpio_pin=board.P29),
"liquid_regulator_err": DigitalSensor(gpio_pin=board.P31),
"air_regulator_err": DigitalSensor(gpio_pin=board.P33),
+
"server_led": Switch(gpio_pin=board.P36),
+
"runner_led": Switch(gpio_pin=board.P38),
+
}
+
+
reactants = {
+
"ACT": Valve(gpio_pin=board.P18),
+
"OXI": Valve(gpio_pin=board.P19),
+
"CAP1": Valve(gpio_pin=board.P21),
+
"CAP2": Valve(gpio_pin=board.P22),
+
"DEB": Valve(gpio_pin=board.P23),
+
"CLDE": Valve(gpio_pin=board.P24),
}
@@ -1189,15 +1203,15 @@
openoligo.hal.board module
def __init__(
self,
phosphoramidites: Dict[str, Valve],
-
reactants: Dict[str, Valve],
):
"""
Initialize the pinout.
"""
self.fixed = fixed_pinout
-
self.phosphoramidites = phosphoramidites
self.reactants = reactants
+
self.phosphoramidites = phosphoramidites
+
self.__pinout: Dict[str, Switchable] = {}
self.init_pinout()
@@ -1285,6 +1299,14 @@
var fixed_pinout
+
+
+
+
+