airspeedSensor.h
Go to the documentation of this file.
1 /*
2  * File: airspeed.h
3  * Author: Chris Hajduk
4  *
5  * Created on June 5, 2014, 8:18 PM
6  */
7 
8 #ifndef AIRSPEEDSENSOR_H
9 #define AIRSPEEDSENSOR_H
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 #define AIRSPEED_HISTORY 20
16 
17 
18 //Function Prototypes
19 //TODO: Add descriptions for each function
20 void initAirspeedSensor();
21 //float timeRemaining();
22 float getCurrentAirspeed();
23 void initAirspeedADC();
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 #endif /* AIRSPEEDSENSOR_H */
30 
void initAirspeedSensor()
void initAirspeedADC()
float getCurrentAirspeed()