Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: TORTILLA/TORTILLA.h
- Revision:
- 1:4fb1de70cd4d
- Parent:
- 0:b47aaa131075
- Child:
- 2:364e8d3f9ee4
diff -r b47aaa131075 -r 4fb1de70cd4d TORTILLA/TORTILLA.h
--- a/TORTILLA/TORTILLA.h Mon Feb 11 15:28:07 2019 +0000
+++ b/TORTILLA/TORTILLA.h Mon Feb 11 23:01:09 2019 +0000
@@ -3,15 +3,26 @@
class TORTILLA{
public:
TORTILLA(void);
+ void check(void);
+ void setDP(int DP);
+ bool getExtruder(void);
+ bool getCutter(void);
+ bool getGriddle(void);
+ bool getOven(void);
+ bool getTortilla(void);
+ void addExtruder(void);
+ void addCutter(void);
+ void addGriddle(void);
+ void addOven(void);
private:
//int* timer;
- int extruderTimer;
+ int extruderCount;
bool EXTRUDER_PRODUCTION;
- int cutterTimer;
+ int cutterCount;
bool CUTTER_PRODUCTION;
- int griddleTimer;
+ int griddleCount;
bool GRIDDLE_PRODUCTION;
- int ovenTimer;
+ int ovenCount;
bool OVEN_PRODUCTION;
int desiredProduction;
bool TORTILLA_PRODUCTION;