Device to measure angle and get IMU measurements.

Dependencies:   mbed commands BLE_API nRF51822

Storage.h

Committer:
dkester
Date:
2015-05-20
Revision:
1:b44bd62c542f
Parent:
0:1c5088dae6e1
Child:
3:a3e1a06c486d

File content as of revision 1:b44bd62c542f:

#ifndef _STORAGE_H_
#define _STORAGE_H_

#include "mbed.h"

class Storage
{
    static Storage* instance;
    Storage();

public:

    static Storage* getInstance();
    int32_t setup();
    //void write();
    //int32_t read();

};

#endif /* _STORAGE_H_ */