main/recipes.c

changeset 89
fa44bd094e01
parent 77
66c77497d86d
child 93
24cb415af787
equal deleted inserted replaced
88:7f02dbee58d0 89:fa44bd094e01
521 TFT_print((char *)"Temp.", 200, y); 521 TFT_print((char *)"Temp.", 200, y);
522 TFT_print((char *)"Rust", 280, y); 522 TFT_print((char *)"Rust", 280, y);
523 _fg = TFT_YELLOW; 523 _fg = TFT_YELLOW;
524 y += 16; 524 y += 16;
525 for (i = 0; i < recipe_hdr.mashmax; i++) { 525 for (i = 0; i < recipe_hdr.mashmax; i++) {
526 ESP_LOGI(TAG, "%2d %-31s %3d %5.2f %5.2f %2d %2d %7.4f %6.3f", i, recipe.MashStep[i].Name, recipe.MashStep[i].Type, 526 ESP_LOGD(TAG, "%2d %-31s %3d %5.2f %5.2f %2d %2d %7.4f %6.3f", i, recipe.MashStep[i].Name, recipe.MashStep[i].Type,
527 recipe.MashStep[i].Step_temp, recipe.MashStep[i].End_temp, recipe.MashStep[i].Step_time, recipe.MashStep[i].Ramp_time, 527 recipe.MashStep[i].Step_temp, recipe.MashStep[i].End_temp, recipe.MashStep[i].Step_time, recipe.MashStep[i].Ramp_time,
528 recipe.MashStep[i].Infuse_temp, recipe.MashStep[i].Infuse_amount); 528 recipe.MashStep[i].Infuse_temp, recipe.MashStep[i].Infuse_amount);
529 if (recipe.MashStep[i].Type != 255) { 529 if (recipe.MashStep[i].Type != 255) {
530 TFT_print(recipe.MashStep[i].Name, 2, y); 530 TFT_print(recipe.MashStep[i].Name, 2, y);
531 strcpy(tmp, mashTypes[recipe.MashStep[i].Type]); 531 strcpy(tmp, mashTypes[recipe.MashStep[i].Type]);

mercurial