mirror of
https://github.com/nuttytree/ESPHome-Devices.git
synced 2024-08-30 18:12:19 +00:00
Turn bold mode on at the start of the bloom cycle
This commit is contained in:
parent
28b3840f5d
commit
76d260bb9a
@ -51,6 +51,9 @@ interval:
|
|||||||
// Coffee should be wet now so turn off and let it bloom
|
// Coffee should be wet now so turn off and let it bloom
|
||||||
else if (id(power_switch).state && brewStage == 1 && millis() >= brewStageChange) {
|
else if (id(power_switch).state && brewStage == 1 && millis() >= brewStageChange) {
|
||||||
id(power_switch).turn_off();
|
id(power_switch).turn_off();
|
||||||
|
if (isBoldBrew) {
|
||||||
|
id(bold_switch).turn_on();
|
||||||
|
}
|
||||||
brewStage = 2; //Bloom
|
brewStage = 2; //Bloom
|
||||||
brewStageChange = millis() + 45000;
|
brewStageChange = millis() + 45000;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user