hakkoso/recipes.json

104 lines
2.9 KiB
JSON

[
{
"name": "Tepache",
"description": "Tiene il tepache a ~23 gradi",
"controllers": [
"(make-duty-controller \"heater\" 0.20 120)"
],
"phases": [
{
"name": "Hold",
"description": "Keep 23\u00b0C",
"exit_condition": "(> (time-in-this-phase) (hours 10))",
"on_load": "(begin (set-controller \"heater\" \"T_food\")\n(set-target \"T_food\" 23.0))",
"on_exit": "#t"
}
]
},
{
"name": "Stracchino",
"description": "Tiene lo stracchino a ~35 gradi per 24 ore",
"controllers": [
"(make-duty-controller \"heater\" 0.80 120)"
],
"phases": [
{
"name": "Hold",
"description": "Keep 35\u00b0C",
"exit_condition": "(> (time-in-this-phase) (hours 17))",
"on_load": "(begin (set-controller \"heater\" \"T_food\")\n(set-target \"T_food\" 35.0))",
"on_exit": "#t"
}
]
},
{
"name": "Yogurt",
"description": "Pastorizza lo yogurt a 82 gradi, lascia raffreddare per fare l'inoculo, mantiene a 42 gradi fino a che \u00e8 pronto.",
"controllers": [
"(make-duty-controller \"heater\" 0.20 120)"
],
"phases": [
{
"name": "Riscalda",
"description": "Preheat yogurt to 82°C",
"exit_condition": "(and (>= (get-sensor \"T_food\") 81.5)\n(> (time-in-this-phase) (minutes 15)))",
"on_load": "(begin (set-controller \"heater\" \"T_food\")\n(set-target \"T_food\" 82.0))",
"on_exit": "#t"
},
{
"name": "Cool",
"description": "Cool to 46°C",
"exit_condition": "(and (< (get-sensor \"T_food\") 46.0)\n(> (get-sensor \"T_food\") 42.0))",
"on_load": "(set-target \"T_food\" 46.0)",
"on_exit": "#t"
},
{
"name": "Inoculate (backslopping)",
"description": "Add 50ml Yogurt",
"exit_condition": "(manual-intervention \"Inocula 50g di yogurt\" '((\"Fatto\" #t)))",
"on_load": "(notify \"Inoculate 50g of yogurt NOW!\")",
"on_exit": "(notify (concat \"Inoculated at \" (now)))"
},
{
"name": "Hold",
"description": "Keep at 42°C for 3h",
"exit_condition": "(> (time-in-this-phase) (hours 3))",
"on_load": "(set-target \"T_food\" 41.0)",
"on_exit": "(notify \"You can remove the yogurt from the heater\")"
}
]
},
{
"name": "Nattō",
"description": "FIXME",
"controllers": [
"(make-duty-controller \"heater\" 0.20 120)"
],
"phases": []
},
{
"name": "Tempeh",
"description": "FIXME",
"controllers": [
"(make-duty-controller \"heater\" 0.20 120)"
],
"phases": []
},
{
"name": "Koji Rice",
"description": "FIXME",
"controllers": [
"(make-duty-controller \"heater\" 0.20 120)"
],
"phases": []
},
{
"name": "Gorgonzola",
"description": "FIXME",
"controllers": [
"(make-duty-controller \"heater\" 0.20 120)"
],
"phases": []
}
]