Alex Allen / UM12

Dependents:   Balloon

Revision:
4:c947442469dd
Parent:
3:22a375fbcb3a
Parent:
2:f2cf3a42e690
--- a/UM12.h	Sat Oct 13 11:51:43 2012 +0000
+++ b/UM12.h	Sat Oct 13 11:59:13 2012 +0000
@@ -34,10 +34,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