exercises

Dependencies:   mbed

Revision:
0:ff7b10a0e08f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cook.h	Fri Aug 28 18:45:26 2015 +0000
@@ -0,0 +1,42 @@
+#ifndef COOK_H
+#define COOK_H
+
+#include "mbed.h"
+#include "fruits.h"
+
+class cook{
+    
+    private:
+    
+        uint32_t howWellCooks;
+        /*
+        *   A scale to know how well does the cook cooks
+        *   0 -> Doesnt cook at all
+        *   ...
+        *   3 -> Cooks edible food
+        *   ...
+        *   5 -> Me
+        *   ...
+        *   10-> Master Chef
+        */
+        
+    
+    public:
+    
+        uint32_t getHowWellCooks(void);
+        /*
+        *   Returns howWellCooks
+        */
+        void setHowWellCooks(uint32_t);
+        /*
+        *   To improved or worst the cooker skill
+        */
+        void makeBanana(Serial* ,fruits* fruit[]);
+        /*
+        *   A test to see if I can pass the banana array to a function
+        */ 
+    
+    };
+
+
+#endif
\ No newline at end of file