-
Notifications
You must be signed in to change notification settings - Fork 4
Recipes
HackersHub edited this page May 31, 2019
·
1 revision
For ease of use, some basic recipes are included in the recipes.json
file. In the app you can view and set them.
From a technical point of view, all it does is set the desired temperatures and a timer. The timer will send a push notification when it runs out but will not stop the controller.
A recipe is in the following format:
"2": {
"name": "Brisket",
"meat_type": "Beef",
"description": "Time is relevant to thickness of flat area and muscle/fat ratio.\nProbe or skewer should insert with no resistance when brisket is finished.",
"barrel_temp": 108,
"meat_temp": 88,
"cooking_time": 42200
}
The temperatures are in degrees Celcius and the Cooking Time in seconds.
When you add or remove items, ensure that you increment the index number and that the entire list is an increment starting at 1. The reason for this is that the Blynk app only pushes the menu index number when an item is selected.