Implemented first Hangar-Service

Dependencies:   CalibrateMagneto QuaternionMath

Fork of SML2 by TobyRich GmbH

Barometer.h

Committer:
pvaibhav
Date:
2015-01-14
Revision:
1:c279bc3af90c
Child:
2:3898208e02da

File content as of revision 1:c279bc3af90c:

#ifndef _H_BAROMETER_H
#define _H_BAROMETER_H

#include "I2CPeripheral.h"
class Barometer : public I2CPeripheral {
public:
    Barometer(I2C &i2c);
    float getPressure();
};

#endif