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.

Type/IPAddress.h

Committer:
yangcq88517
Date:
2016-03-16
Revision:
9:0ce800923eda
Parent:
1:fd19bd683e90

File content as of revision 9:0ce800923eda:

#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];
    
    char ip[16];

public :
    IPAddress();

    IPAddress(const char * ipString);

    void SetValue(const char * data, int offset = 0);

    virtual const char * GetValue();

    virtual int GetValueLength();
    
    const char * ToString();
};
}

#endif