upm  0.3.1
Sensor/Actuator repository for libmraa (v0.7.2)
bmpx8x.h
1 /*
2  * Author: Yevgeniy Kiveisha <yevgeniy.kiveisha@intel.com>
3  * Contributions: Jon Trulson <jtrulson@ics.com>
4  * Copyright (c) 2014 Intel Corporation.
5  *
6  * Credits to Adafruit.
7  * Based on Adafruit BMP085 library.
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining
10  * a copy of this software and associated documentation files (the
11  * "Software"), to deal in the Software without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27  */
28 #pragma once
29 
30 #include <string>
31 #include <mraa/i2c.h>
32 #include <math.h>
33 
34 #define ADDR 0x77 // device address
35 
36 // registers address
37 #define BMP085_ULTRALOWPOWER 0
38 #define BMP085_STANDARD 1
39 #define BMP085_HIGHRES 2
40 #define BMP085_ULTRAHIGHRES 3
41 #define BMP085_CAL_AC1 0xAA // R Calibration data (16 bits)
42 #define BMP085_CAL_AC2 0xAC // R Calibration data (16 bits)
43 #define BMP085_CAL_AC3 0xAE // R Calibration data (16 bits)
44 #define BMP085_CAL_AC4 0xB0 // R Calibration data (16 bits)
45 #define BMP085_CAL_AC5 0xB2 // R Calibration data (16 bits)
46 #define BMP085_CAL_AC6 0xB4 // R Calibration data (16 bits)
47 #define BMP085_CAL_B1 0xB6 // R Calibration data (16 bits)
48 #define BMP085_CAL_B2 0xB8 // R Calibration data (16 bits)
49 #define BMP085_CAL_MB 0xBA // R Calibration data (16 bits)
50 #define BMP085_CAL_MC 0xBC // R Calibration data (16 bits)
51 #define BMP085_CAL_MD 0xBE // R Calibration data (16 bits)
52 
53 #define BMP085_CONTROL 0xF4
54 #define BMP085_TEMPDATA 0xF6
55 #define BMP085_PRESSUREDATA 0xF6
56 #define BMP085_READTEMPCMD 0x2E
57 #define BMP085_READPRESSURECMD 0x34
58 
59 #define HIGH 1
60 #define LOW 0
61 
62 namespace upm {
63 
91 class BMPX8X {
92  public:
100  BMPX8X (int bus, int devAddr=0x77, uint8_t mode=BMP085_ULTRAHIGHRES);
101 
105  ~BMPX8X ();
106 
110  int32_t getPressure ();
111 
116  int32_t getPressureRaw ();
117 
121  int16_t getTemperatureRaw ();
122 
126  float getTemperature ();
127 
133  int32_t getSealevelPressure(float altitudeMeters = 0);
134 
140  float getAltitude (float sealevelPressure = 101325);
141 
147  int32_t computeB5 (int32_t UT);
148 
154  uint16_t i2cReadReg_16 (int reg);
155 
162  mraa_result_t i2cWriteReg (uint8_t reg, uint8_t value);
163 
169  uint8_t i2cReadReg_8 (int reg);
170 
171  private:
172  std::string m_name;
173 
174  int m_controlAddr;
175  int m_bus;
176  mraa_i2c_context m_i2ControlCtx;
177 
178  uint8_t oversampling;
179  int16_t ac1, ac2, ac3, b1, b2, mb, mc, md;
180  uint16_t ac4, ac5, ac6;
181 };
182 
183 }
int32_t computeB5(int32_t UT)
Definition: bmpx8x.cxx:176
uint8_t i2cReadReg_8(int reg)
Definition: bmpx8x.cxx:212
BMPX8X(int bus, int devAddr=0x77, uint8_t mode=BMP085_ULTRAHIGHRES)
Definition: bmpx8x.cxx:33
int32_t getPressureRaw()
Definition: bmpx8x.cxx:113
~BMPX8X()
Definition: bmpx8x.cxx:72
int16_t getTemperatureRaw()
Definition: bmpx8x.cxx:138
int32_t getSealevelPressure(float altitudeMeters=0)
Definition: bmpx8x.cxx:159
Definition: a110x.h:29
mraa_result_t i2cWriteReg(uint8_t reg, uint8_t value)
Definition: bmpx8x.cxx:184
float getTemperature()
Definition: bmpx8x.cxx:145
API for GY65/BMP085 and BMP180 chips (Atmospheric Pressure Sensor)
Definition: bmpx8x.h:91
uint16_t i2cReadReg_16(int reg)
Definition: bmpx8x.cxx:195
float getAltitude(float sealevelPressure=101325)
Definition: bmpx8x.cxx:165
int32_t getPressure()
Definition: bmpx8x.cxx:77