Implemented first Hangar-Service

Dependencies:   CalibrateMagneto QuaternionMath

Fork of SML2 by TobyRich GmbH

Accelerometer.h

Committer:
pvaibhav
Date:
2015-02-12
Revision:
5:b9f2f62a8f90
Parent:
1:c279bc3af90c
Child:
7:604a8369b801

File content as of revision 5:b9f2f62a8f90:

#ifndef _H_ACCELEROMETER_H
#define _H_ACCELEROMETER_H

#include "I2CPeripheral.h"

class Accelerometer : public I2CPeripheral {
public:
    Accelerometer(I2C &i2c);
    void powerOn();
    void deepSuspend();
};

#endif