Version 0.3.14. Log brewing essentials at brew start.

Wed, 19 May 2021 17:21:33 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 19 May 2021 17:21:33 +0200
changeset 96
6a3fec0c3f88
parent 95
c02e12e9c884
child 97
9c6c37a8da52

Version 0.3.14. Log brewing essentials at brew start.

CMakeLists.txt file | annotate | diff | comparison | revisions
image/version.txt file | annotate | diff | comparison | revisions
main/automation.c file | annotate | diff | comparison | revisions
--- 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)
--- 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
--- 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?");

mercurial