27 lines
759 B
TOML
27 lines
759 B
TOML
[inputs]
|
|
nutrient_reservoir = {}
|
|
plant_tray = {}
|
|
nutrient_pump = {}
|
|
grow_lights = {}
|
|
tasmota_power_outlet = { quantity = { amount=2 } }
|
|
hose_1_inch = { quantity = { amount=1, unit="Meter" } }
|
|
hose_1_2_inch = { quantity = { amount=1, unit="Meter" } }
|
|
nutrient_solution = { quantity = { amount=5, unit="Liter" } }
|
|
|
|
[dependencies]
|
|
operator = { skills=["assembly"] }
|
|
|
|
[action]
|
|
process = """Position the plant tray above the nutrient reservoir.
|
|
|
|
Put the pump in the nutrient reservoir.
|
|
|
|
Use the 1/2 inch tubing to connect the 1/2 inch fitting on the plant
|
|
tray to the pump outlet.
|
|
|
|
Use the 1 inch tubing to connect the 1 inch fitting on the plant tray
|
|
to the nutrient reservoir.
|
|
|
|
Mix the nutrient solution in the nutrient tank.
|
|
|
|
FIXME: Plant some plants etc??."""
|