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.
2016-10-20 08:59:30 +02:00

27 lines
382 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();
double barometer_GetCurrentAltitude();
#endif /* DRIVERS_BAROMETER_H_ */