Commit ecde9ecc authored by João Lino's avatar João Lino

Fixes during cooking.

parent 90ab15b9
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
#define PROFILE_TRIGO_PROTEOLYTIC_TEMPERATURE PROFILE_BASIC_PROTEOLYTIC_TEMPERATURE #define PROFILE_TRIGO_PROTEOLYTIC_TEMPERATURE PROFILE_BASIC_PROTEOLYTIC_TEMPERATURE
#define PROFILE_TRIGO_BETAAMYLASE_TEMPERATURE 62 #define PROFILE_TRIGO_BETAAMYLASE_TEMPERATURE 62
#define PROFILE_TRIGO_ALPHAAMYLASE_TEMPERATURE PROFILE_BASIC_ALPHAAMYLASE_TEMPERATURE #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_RECIRCULATION_TEMPERATURE PROFILE_BASIC_RECIRCULATION_TEMPERATURE
#define PROFILE_TRIGO_SPARGE_TEMPERATURE PROFILE_BASIC_SPARGE_TEMPERATURE #define PROFILE_TRIGO_SPARGE_TEMPERATURE PROFILE_BASIC_SPARGE_TEMPERATURE
#define PROFILE_TRIGO_BOIL_TEMPERATURE PROFILE_BASIC_BOIL_TEMPERATURE #define PROFILE_TRIGO_BOIL_TEMPERATURE PROFILE_BASIC_BOIL_TEMPERATURE
......
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
//#define DEBUG //#define DEBUG
#define INFO #define INFO
#define HEATING_ELEMENT_ALWAYS_OFF //#define HEATING_ELEMENT_ALWAYS_OFF
#define PUMP_ALWAYS_OFF //#define PUMP_ALWAYS_OFF
// ######################### LIBRARIES ######################### // ######################### LIBRARIES #########################
#include "brew.h" #include "brew.h"
...@@ -979,11 +979,11 @@ void xManageMachineSystems() { ...@@ -979,11 +979,11 @@ void xManageMachineSystems() {
break; break;
} }
case eCookingStage_Mashout: { case eCookingStage_Mashout: {
xBasicStageOperation( mashoutTime, mashoutTemperature, 1.0, eCookingStage_Recirculation, true ); xBasicStageOperation( mashoutTime, mashoutTemperature, 3.0, eCookingStage_Recirculation, true );
break; break;
} }
case eCookingStage_Recirculation: { case eCookingStage_Recirculation: {
xBasicStageOperation( recirculationTime, recirculationTemperature, 1.0, eCookingStage_Sparge, true ); xBasicStageOperation( recirculationTime, recirculationTemperature, 2.0, eCookingStage_Sparge, true );
break; break;
} }
case eCookingStage_Sparge: { case eCookingStage_Sparge: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment