This repository has been archived on 2020-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Jonas Holmberg ec395d11e0 Working software ic2 barometer
Can read from baro and get temp, preassure and alt. Will look into
optimizations.
2016-10-25 17:10:36 +02:00

27 lines
396 B
C

/*
* barometer.h
*
* Created on: 18 okt. 2016
* Author: holmis
*/
#ifndef DRIVERS_BAROMETER_H_
#define DRIVERS_BAROMETER_H_
bool barometer_init();
bool barometer_reset();
void barometer_CaclulateValues();
double barometer_GetCurrentPreassure();
double barometer_GetCurrentTemperature();
float barometer_GetCurrentAltitudeBasedOnSeaLevel();
#endif /* DRIVERS_BAROMETER_H_ */