diff --git a/Profiles.h b/Profiles.h index 24f60530a4e2257807981a120fa456dffcec5ba2..0017c01c5e70d76b5eac2d49b992f96b23a61421 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 d0da86482b269f96d74b01e95e792356170994fc..ebb0105c75a2d4e565c5e5620d9b0aa00f686b4d 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: {