Turn bold mode on at the start of the bloom cycle

This commit is contained in:
Chris Nussbaum 2021-09-17 14:31:53 -05:00
parent 28b3840f5d
commit 76d260bb9a

View File

@ -51,6 +51,9 @@ interval:
// Coffee should be wet now so turn off and let it bloom
else if (id(power_switch).state && brewStage == 1 && millis() >= brewStageChange) {
id(power_switch).turn_off();
if (isBoldBrew) {
id(bold_switch).turn_on();
}
brewStage = 2; //Bloom
brewStageChange = millis() + 45000;
}