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