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.
TORTILLA/TORTILLA.h@0:b47aaa131075, 2019-02-11 (annotated)
- Committer:
- papaco
- Date:
- Mon Feb 11 15:28:07 2019 +0000
- Revision:
- 0:b47aaa131075
- Child:
- 1:4fb1de70cd4d
lad
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| papaco | 0:b47aaa131075 | 1 | #include "mbed.h" |
| papaco | 0:b47aaa131075 | 2 | |
| papaco | 0:b47aaa131075 | 3 | class TORTILLA{ |
| papaco | 0:b47aaa131075 | 4 | public: |
| papaco | 0:b47aaa131075 | 5 | TORTILLA(void); |
| papaco | 0:b47aaa131075 | 6 | private: |
| papaco | 0:b47aaa131075 | 7 | //int* timer; |
| papaco | 0:b47aaa131075 | 8 | int extruderTimer; |
| papaco | 0:b47aaa131075 | 9 | bool EXTRUDER_PRODUCTION; |
| papaco | 0:b47aaa131075 | 10 | int cutterTimer; |
| papaco | 0:b47aaa131075 | 11 | bool CUTTER_PRODUCTION; |
| papaco | 0:b47aaa131075 | 12 | int griddleTimer; |
| papaco | 0:b47aaa131075 | 13 | bool GRIDDLE_PRODUCTION; |
| papaco | 0:b47aaa131075 | 14 | int ovenTimer; |
| papaco | 0:b47aaa131075 | 15 | bool OVEN_PRODUCTION; |
| papaco | 0:b47aaa131075 | 16 | int desiredProduction; |
| papaco | 0:b47aaa131075 | 17 | bool TORTILLA_PRODUCTION; |
| papaco | 0:b47aaa131075 | 18 | };//TORTILLA |