Murata RF modules are designed to simplify wireless development and certification by minimizing the amount of RF expertise you need to wirelessly enable a wide range of applications.

Revision:
0:8e83b9448758
Child:
1:fd19bd683e90
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Type/IPAddress.h	Tue Feb 03 21:24:15 2015 +0000
@@ -0,0 +1,33 @@
+#ifndef SmartLab_MuRata_Type_IPAddress
+#define SmartLab_MuRata_Type_IPAddress
+
+#include "IConfig.h"
+
+#include <string>
+#include "mbed.h"
+
+using namespace std;
+
+namespace SmartLabMuRata
+{
+class IPAddress : public IConfig
+{
+private:
+    char address[4];
+
+public :
+    IPAddress();
+
+    IPAddress(const string & ip);
+
+    void SetValue(const char * data, int offset = 0);
+
+    virtual const char * GetValue();
+
+    virtual int GetValueLength();
+
+    string ToString();
+};
+}
+
+#endif
\ No newline at end of file