Thanks for posting the rules every reply and I understand they are there but are you ever going to give a sensible answer to my questions as a new user of arduino if not the please don't reply. TA
//timeEstimate =
Timeprimary - days;
if ((fermentTimeprimary - days) <= 0) {
terminal.println("PRIMARY FERMENTATION DONE, MOVE TO SECONDARY OR BOTTLE. ADD SUGAR OR CO2 BEFORE BOTTLEING");
terminal.flush();
Blynk.email("minibarrow@gmail.com", "Brew Ready", "The fermentation time is over, the brew is ready.");
brewStage = 9;
}
break;
case 9:
display.setTextSize(1);
display.setTextColor(WHITE);
display.setCursor(0, 0);
display.println(" FINISHED");
display.println();
display.setTextColor(BLACK, WHITE); // 'inverted' text
display.println("days:");
display.println(days);
display.println(temperature);
display.print(hours);
display.print(":");
display.print(minutes);
display.print(":");
display.println(seconds);
display.display();
delay(5);
display.clearDisplay();
LCD1 = "BEER IS READY";
LCD2 = "ADD SUGAR OR CO2";
break;
case 10:
//What to do when Brewstage equals 10
break;
case 11:
//What to do when Brewstage equals 11
break;
default:
// if nothing else matches, do the default
// default is optional
break;
}
}// end void loop
In that snippet, Timeprimary is not declared. Did youd declare it anywhere?
Further you commented out the line with timeEstimate; the next line is in this case useless.
minibarrow:
Thanks for posting the rules every reply and I understand they are there but are you ever going to give a sensible answer to my questions as a new user of arduino if not the please don't reply. TA
Read my post again; I gave a sensible answer in the first line. That you can't read is not my problem.