Tezzeret  1
Tezzeret
GmTmp75BTemperatureSensor.hpp
1 
2 #ifndef _TMP_SENSOR_HPP
3 #define _TMP_SENSOR_HPP
4 
5 #if GEO_TMP75_TEMP_SENSOR == GEO_TRUE
6 
7 #include <ti/drivers/I2C.h>
8 
9 #define BOARD_TMP75_I2C_ADDRESS (0x4F)
10 #define TMP75_DEGREES_C_PER_LSB (0.0625)
11 
12 namespace Geometrics
13 {
14 
16  {
17  public:
19  static int Initialize (const I2C_Handle offboardI2cHandle);
20  static int GetTemperature (float &temperature);
21 
22  static bool sInitialized;
23 
24  };
25 }
26 
27 #endif
28 #endif
29 
Definition: GmTmp75BTemperatureSensor.hpp:16
GmApp/GmLoggingApp.hpp>
Definition: Analogs.hpp:47