Prosper Van / Mbed 2 deprecated quadCommand2

Dependencies:   mbed DCM_AHRS_GY80 PID MMA8451Q

Fork of quadCommand by Greg Abdo

quadCommand/sensorS/sensors.h

Committer:
gabdo
Date:
2013-06-09
Revision:
9:9e0d0ba5b6b1
Parent:
4:ce6ad16337c5
Child:
11:a80e854955dc

File content as of revision 9:9e0d0ba5b6b1:

/************************* quadCommand.h *********************************/
/*                                                                       */
/*************************************************************************/

#include "MMA8451Q.h"

#ifndef SENSORS_H
#define SENSORS_H

class sensors
{
    public:
        sensors();
        float getAbsoluteX();   // Get the value off level in the X directoin.
        float getAbsoluteY();   // Get the value off level in the Y directoin.
    
    private:
        MMA8451Q *acc;          // Pointer to the acceleromi
};
#endif