Alex Allen / UM12

Dependents:   Balloon

Revision:
2:f2cf3a42e690
Parent:
0:18297993986b
Child:
4:c947442469dd
diff -r 84430ccc5662 -r f2cf3a42e690 UM12.h
--- a/UM12.h	Tue Jul 19 19:29:21 2011 +0000
+++ b/UM12.h	Fri Jul 22 10:57:14 2011 +0000
@@ -16,10 +16,12 @@
         void reset(); // Reset UM12
         
         void send(char msg); // Send a single char
+        void send(bool msg); // Send a boolean message
         void send(int msg); // Send a four byte integer
         void send(float msg); // Send a four byte floating point number
         
         char receive(char &msg); // Receive a single char
+        bool receive(bool &msg); // Receive a boolean
         int receive(int &msg); // Receive a four byte integer
         float receive(float &msg); // Receive a four byte floating point number