From 39e93b36f97159b9bfaa732555839943acd47a0e Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Wed, 2 Apr 2025 23:38:54 -0600 Subject: [PATCH] minimal_hydroponics_setup: add nutrient solution ingredients --- .../minimal_hydroponics_setup.toml | 4 ++++ .../nutrient_concentrate.toml | 15 +++++++++++++++ .../minimal_hydroponics_setup/nutrient_pump.toml | 3 ++- .../minimal_hydroponics_setup/ph_up_down.toml | 14 ++++++++++++++ 4 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 modular-recipes/repos/minimal_hydroponics_setup/nutrient_concentrate.toml create mode 100644 modular-recipes/repos/minimal_hydroponics_setup/ph_up_down.toml diff --git a/modular-recipes/repos/minimal_hydroponics_setup/minimal_hydroponics_setup.toml b/modular-recipes/repos/minimal_hydroponics_setup/minimal_hydroponics_setup.toml index 9626a2c..9a2dc0b 100644 --- a/modular-recipes/repos/minimal_hydroponics_setup/minimal_hydroponics_setup.toml +++ b/modular-recipes/repos/minimal_hydroponics_setup/minimal_hydroponics_setup.toml @@ -6,6 +6,8 @@ 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_concentrate = { quantity = { amount=1, unit="Liter" } } +ph_up_down = { quantity = { amount=1, unit="Liter" } } [dependencies] operator = { skills=["assembly"] } @@ -21,4 +23,6 @@ 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??.""" diff --git a/modular-recipes/repos/minimal_hydroponics_setup/nutrient_concentrate.toml b/modular-recipes/repos/minimal_hydroponics_setup/nutrient_concentrate.toml new file mode 100644 index 0000000..57e67ed --- /dev/null +++ b/modular-recipes/repos/minimal_hydroponics_setup/nutrient_concentrate.toml @@ -0,0 +1,15 @@ +[outputs.nutrient_concentrate] +comments = """Lots of different options, this should be tailored to the +plants you're growing.""" +quantity = { amount=1, unit="Liter" } + +[inputs] +capital={quantity={amount=26.89, unit="USDollar"}} + +[dependencies] +operator = {skills=["vendor interaction"]} + +[action.purchase] +vendor = [ + "https://www.ebay.com/itm/261224602266?var=560203649178" +] diff --git a/modular-recipes/repos/minimal_hydroponics_setup/nutrient_pump.toml b/modular-recipes/repos/minimal_hydroponics_setup/nutrient_pump.toml index a50a760..3eaeaf8 100644 --- a/modular-recipes/repos/minimal_hydroponics_setup/nutrient_pump.toml +++ b/modular-recipes/repos/minimal_hydroponics_setup/nutrient_pump.toml @@ -7,13 +7,14 @@ The 160 GPH and 250 GPH both use 1/2 inch tubing, so i'll try one of those, easy to switch to the other one if the first one's no good.""" [inputs] -capital={quantity={amount=17.75, unit="USDollar"}} +capital={quantity={amount=21.69, unit="USDollar"}} [dependencies] operator = {skills=["vendor interaction"]} [action.purchase] vendor = [ + "https://www.ebay.com/itm/261229407962", "https://www.ebay.com/itm/373981715463", "https://hydrobuilder.com/active-aqua-submersible-water-pumps.html", ] diff --git a/modular-recipes/repos/minimal_hydroponics_setup/ph_up_down.toml b/modular-recipes/repos/minimal_hydroponics_setup/ph_up_down.toml new file mode 100644 index 0000000..3ebb3d7 --- /dev/null +++ b/modular-recipes/repos/minimal_hydroponics_setup/ph_up_down.toml @@ -0,0 +1,14 @@ +[outputs.ph_up_down] +quantity = { amount=1, unit="Liter" } + +[inputs] +capital={quantity={amount=26.48, unit="USDollar"}} + +[dependencies] +operator = {skills=["vendor interaction"]} + +[action.purchase] +vendor = [ + "https://www.ebay.com/itm/262030464639", + "https://www.ebay.com/itm/261285768017", +]