mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
10 lines
177 B
C++
10 lines
177 B
C++
#include "Blimp.h"
|
|
|
|
// return barometric altitude in centimeters
|
|
void Blimp::read_barometer(void)
|
|
{
|
|
barometer.update();
|
|
|
|
baro_alt = barometer.get_altitude() * 100.0f;
|
|
}
|