OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BMPX8X
(Results
1 - 6
of
6
) sorted by null
/hardware/bsp/intel/peripheral/libupm/examples/java/
BMPX8XSample.java
39
// Instantiate a
BMPX8X
sensor on I2C
40
upm_bmpx8x.
BMPX8X
sensor = new upm_bmpx8x.
BMPX8X
(0);
/hardware/bsp/intel/peripheral/libupm/examples/c++/
bmpx8x.cxx
27
#include "
bmpx8x
.h"
31
upm::
BMPX8X
*sensor = NULL;
52
// Instantiate a
BMPX8X
sensor on I2C
53
sensor = new upm::
BMPX8X
(0, ADDR);
/hardware/bsp/intel/peripheral/libupm/src/bmpx8x/
bmpx8x.cxx
31
#include "
bmpx8x
.h"
35
BMPX8X
::
BMPX8X
(int bus, int devAddr, uint8_t mode) : m_controlAddr(devAddr), m_i2ControlCtx(bus) {
37
m_name = "
BMPX8X
";
74
BMPX8X
::getPressure () {
110
BMPX8X
::getPressureRaw () {
135
BMPX8X
::getTemperatureRaw () {
142
BMPX8X
::getTemperature () {
156
BMPX8X
::getSealevelPressure(float altitudeMeters) {
162
BMPX8X
::getAltitude (float sealevelPressure)
[
all
...]
bmpx8x.h
66
* @defgroup
bmpx8x
libupm-
bmpx8x
71
* @library
bmpx8x
72
* @sensor
bmpx8x
88
* @snippet
bmpx8x
.cxx Interesting
91
class
BMPX8X
{
94
* Instantiates a
BMPX8X
object
100
BMPX8X
(int bus, int devAddr=0x77, uint8_t mode=BMP085_ULTRAHIGHRES);
103
*
BMPX8X
object destructor; basically, it closes the I2C connection.
104
* ~
BMPX8X
();
[
all
...]
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
bmpx8x.js
29
var
bmpx8x
= require('jsupm_bmpx8x');
variable
31
var myBarometerObj = new
bmpx8x
.
BMPX8X
(0,
bmpx8x
.ADDR);
/hardware/bsp/intel/peripheral/libupm/examples/python/
bmpx8x.py
28
myBarometer = upmBmpx8x.
BMPX8X
(0, upmBmpx8x.ADDR);
Completed in 237 milliseconds