# HG changeset patch # User Michiel Broek # Date 1621437693 -7200 # Node ID 6a3fec0c3f88193a7297a46e54241d54e2621e4e # Parent c02e12e9c88409a6588358f9ef6dffdda753050a Version 0.3.14. Log brewing essentials at brew start. diff -r c02e12e9c884 -r 6a3fec0c3f88 CMakeLists.txt --- a/CMakeLists.txt Wed May 19 14:47:17 2021 +0200 +++ b/CMakeLists.txt Wed May 19 17:21:33 2021 +0200 @@ -2,7 +2,7 @@ # in this exact order for cmake to work correctly cmake_minimum_required(VERSION 3.5) -set(PROJECT_VER "0.3.13") +set(PROJECT_VER "0.3.14") set(PROJECT_NAME "brewboard") include($ENV{IDF_PATH}/tools/cmake/project.cmake) diff -r c02e12e9c884 -r 6a3fec0c3f88 image/version.txt --- a/image/version.txt Wed May 19 14:47:17 2021 +0200 +++ b/image/version.txt Wed May 19 17:21:33 2021 +0200 @@ -1,1 +1,1 @@ -0.3.13 +0.3.14 diff -r c02e12e9c884 -r 6a3fec0c3f88 main/automation.c --- a/main/automation.c Wed May 19 14:47:17 2021 +0200 +++ b/main/automation.c Wed May 19 17:21:33 2021 +0200 @@ -121,6 +121,10 @@ LastMashStep = 0; ESP_LOGD(TAG, "Last mash step %d", LastMashStep); + log_msg(TAG, "Equipent: %s", equipment.Name); + log_msg(TAG, "PID : P=%.3f I=%.3f D=%.3f", equipment.PID_kP, equipment.PID_kI, equipment.PID_kD); + log_msg(TAG, "Recipe : %s %s", recipe.Code, recipe.Name); + // Check for a crashed session. if (runtime.AutoModeStarted) { TopMessage((char *)"Brouwen hervatten?");