support OSC-string

Dependents:   OSCtoCVConverter

Fork of OSC by Toby Harris

Revision:
3:f4118f0bc1ab
Parent:
2:507dea4cc97a
Child:
4:601f6a1141fb
diff -r 507dea4cc97a -r f4118f0bc1ab mbedOSC.h
--- a/mbedOSC.h	Sun Aug 02 09:56:26 2015 +0000
+++ b/mbedOSC.h	Sun Jan 03 00:13:22 2016 +0000
@@ -129,7 +129,7 @@
           "if" 123 54.24 --> number of the OSC message args is 2
  Attention: the maximum number of args is 2 (MAX_ARG)
  */
-        uint8_t       getArgNum();    //return 2
+        uint8_t      getArgNum();    //return 2
     
 /**
  Get the args of the OSC message with an integer value
@@ -139,7 +139,7 @@
  Noe: "i" is integer, but the return type is "long"
  Note: When a index is bigger than the number of the args, it is set to the number of the args
  */
-        int32_t       getArgInt(uint8_t _index);        //_index=0 -> 123
+        int          getArgInt(uint8_t _index);        //_index=0 -> 123
 
 /**
  Get the args of the OSC message with a float value
@@ -149,7 +149,7 @@
  attention: arg declared as float, but return value cast as "double"
  attention: When index is bigger than the number of the args, it is set to the number of the args
  */
-        double getArgFloat(uint8_t _index);    //_index=1 -> 54.21
+        double       getArgFloat(uint8_t _index);    //_index=1 -> 54.21
     
     
 /**