From f56dcd0e30ecda3dd64ddfaabc56d4094526b25b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Balzarotti?= Date: Thu, 30 Mar 2023 21:16:07 +0200 Subject: [PATCH] completata ricetta Salame --- recipes.json | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/recipes.json b/recipes.json index 28be0cb..edc2d87 100644 --- a/recipes.json +++ b/recipes.json @@ -16,11 +16,25 @@ "on_exit": "#t" }, { - "name": "Keep", - "description": "Keep", - "exit_condition": "#f", - "on_load": "(begin \n(set-controller \"freezer\" \"T_ext\")(set-controller \"humidifier\" \"H_ext\")\n(set-controller \"heater\" \"T_ext2\")\n(set-target \"H_ext\" 90.0)\n(set-target \"T_ext2\" 25.0)\n(set-target \"T_ext\" 28.0))", - "on_exit": "" + "name": "Stufatura", + "description": "Tiene ad alta temperatura e umidità", + "exit_condition": "(> (time-in-this-phase) (hours 11))", + "on_load": "(begin \n(set-controller \"freezer\" \"T_ext\")(set-controller \"humidifier\" \"H_ext\")\n(set-controller \"heater\" \"T_ext2\")\n(set-target \"H_ext\" 90.0)\n(set-target \"T_ext2\" 25.0)\n(set-target \"T_ext\" 30.0))", + "on_exit": "#t" + }, + { + "name": "Abbassa", + "description": "Abbassa entrambe (temp a 20, umidità a 82)", + "exit_condition": "(> (time-in-this-phase) (hours (* 24 4))", + "on_load": "(begin \n(set-controller \"freezer\" \"T_ext\")(set-controller \"humidifier\" \"H_ext\")\n(set-controller \"heater\" \"T_ext2\")\n(set-target \"H_ext\" 82.0)\n(set-target \"T_ext2\" 20.0)\n(set-target \"T_ext\" 23.0))", + "on_exit": "#t" + }, + { + "name": "Maturazione", + "description": "Abbassa entrambe ancora (temp a 16, umidità a 80)", + "exit_condition": "(> (time-in-this-phase) (hours (* 24 30))", + "on_load": "(begin \n(set-controller \"freezer\" \"T_ext\")(set-controller \"humidifier\" \"H_ext\")\n(set-controller \"heater\" \"T_ext2\")\n(set-target \"H_ext\" 80.0)\n(set-target \"T_ext2\" 15.0)\n(set-target \"T_ext\" 16.0))", + "on_exit": "#t" } ] },