Brew heater controller. Programmed to mash grain and to boil wort
Dependencies: mbed QEI UniGraphic
Diff: Profiles.h
- Revision:
- 0:c673d397e9dc
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Profiles.h Fri Jan 07 12:08:12 2022 +0000
@@ -0,0 +1,17 @@
+
+enum goal { Null,Boil, Temp, Time};
+char *Message[7]={"","Add Hops","Add Flocculant","Add Grain","Sparge","Finished","Phase Done"};
+
+struct ProfileElement {
+ goal GoalType;
+ uint8_t MessageNo;
+ float Temp;
+ int8_t Power;
+ int Seconds;
+};
+struct Profile {
+ char Name[20];
+ ProfileElement Element[6];
+};
+char *TopLevelMenu[3]={"Top Menu ","Manual ","Programmed "};
+// 12345678901234567890
\ No newline at end of file