Device to measure angle and get IMU measurements.

Dependencies:   mbed commands BLE_API nRF51822

Storage.h

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

File content as of revision 0:1c5088dae6e1:

#ifndef _STORAGE_H_
#define _STORAGE_H_

#include "mbed.h"

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

public:

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

};

#endif /* _STORAGE_H_ */