update recipes

This commit is contained in:
Nicolò Balzarotti 2023-01-04 14:56:50 +01:00
parent 1a15b3caf1
commit e40290f08c
1 changed files with 13 additions and 13 deletions

View File

@ -9,9 +9,9 @@
{ {
"name": "Hold", "name": "Hold",
"text": "Keep 23\u00b0C", "text": "Keep 23\u00b0C",
"nextcond": "#t", "nextcond": "(> (time-in-this-phase) (hours 10))",
"current": false, "current": false,
"onload": "#t", "onload": "(begin (set-controller \"heater\" \"T_food\")\n(set-target \"T_food\" 23.0))",
"onexit": "#t" "onexit": "#t"
} }
] ]
@ -24,7 +24,7 @@
], ],
"phases": [ "phases": [
{ {
"name": "Preheat", "name": "Riscalda",
"text": "Preheat yogurt to 82\u00b0", "text": "Preheat yogurt to 82\u00b0",
"nextcond": "#t", "nextcond": "#t",
"current": false, "current": false,
@ -34,26 +34,26 @@
{ {
"name": "Cool", "name": "Cool",
"text": "Cool to 46\u00b0", "text": "Cool to 46\u00b0",
"nextcond": "#t", "nextcond": "(and (< (get-sensor \"T_food\") 46.0)\n(> (get-sensor \"T_food\") 42.0))",
"current": false, "current": false,
"onload": "#t", "onload": "(set-target \"T_food\" 46.0)",
"onexit": "#t" "onexit": "#t"
}, },
{ {
"name": "Inoculate (Backslopping)", "name": "Inoculate",
"text": "Add 50ml of an old Yogurt batch", "text": "Add 50ml Yogurt",
"nextcond": "#t", "nextcond": "(manual-intervention \"Inocula 50g di yogurt\" '((\"Fatto\" #t)))",
"current": false, "current": false,
"onload": "#t", "onload": "(notify \"Inoculate 50g of yogurt NOW!\")",
"onexit": "#t" "onexit": "(notify (concat \"Inoculated at \" (now)))"
}, },
{ {
"name": "Hold", "name": "Hold",
"text": "Keep at 42\u00b0 for 3h", "text": "Keep at 42\u00b0 for 3h",
"nextcond": "#t", "nextcond": "(> (time-in-this-phase) (hours 3))",
"current": false, "current": false,
"onload": "#t", "onload": "(set-target \"T_food\" 41.0)",
"onexit": "#t" "onexit": "(notify \"You can remove the yogurt from the heater\")"
} }
] ]
}, },