From ecde9ecc6a5628b940c5c0e76b333c973b83a228 Mon Sep 17 00:00:00 2001 From: jlino Date: Sun, 18 Feb 2018 21:43:33 +0000 Subject: [PATCH] Fixes during cooking. --- Profiles.h | 2 +- brew.ino | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Profiles.h b/Profiles.h index 24f6053..0017c01 100644 --- a/Profiles.h +++ b/Profiles.h @@ -46,7 +46,7 @@ #define PROFILE_TRIGO_PROTEOLYTIC_TEMPERATURE PROFILE_BASIC_PROTEOLYTIC_TEMPERATURE #define PROFILE_TRIGO_BETAAMYLASE_TEMPERATURE 62 #define PROFILE_TRIGO_ALPHAAMYLASE_TEMPERATURE PROFILE_BASIC_ALPHAAMYLASE_TEMPERATURE -#define PROFILE_TRIGO_MASHOUT_TEMPERATURE 78 +#define PROFILE_TRIGO_MASHOUT_TEMPERATURE PROFILE_BASIC_MASHOUT_TEMPERATURE //78 #define PROFILE_TRIGO_RECIRCULATION_TEMPERATURE PROFILE_BASIC_RECIRCULATION_TEMPERATURE #define PROFILE_TRIGO_SPARGE_TEMPERATURE PROFILE_BASIC_SPARGE_TEMPERATURE #define PROFILE_TRIGO_BOIL_TEMPERATURE PROFILE_BASIC_BOIL_TEMPERATURE diff --git a/brew.ino b/brew.ino index d0da864..ebb0105 100644 --- a/brew.ino +++ b/brew.ino @@ -6,8 +6,8 @@ //#define DEBUG #define INFO -#define HEATING_ELEMENT_ALWAYS_OFF -#define PUMP_ALWAYS_OFF +//#define HEATING_ELEMENT_ALWAYS_OFF +//#define PUMP_ALWAYS_OFF // ######################### LIBRARIES ######################### #include "brew.h" @@ -979,11 +979,11 @@ void xManageMachineSystems() { break; } case eCookingStage_Mashout: { - xBasicStageOperation( mashoutTime, mashoutTemperature, 1.0, eCookingStage_Recirculation, true ); + xBasicStageOperation( mashoutTime, mashoutTemperature, 3.0, eCookingStage_Recirculation, true ); break; } case eCookingStage_Recirculation: { - xBasicStageOperation( recirculationTime, recirculationTemperature, 1.0, eCookingStage_Sparge, true ); + xBasicStageOperation( recirculationTime, recirculationTemperature, 2.0, eCookingStage_Sparge, true ); break; } case eCookingStage_Sparge: { -- 2.24.1