OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TP401
(Results
1 - 6
of
6
) sorted by null
/hardware/bsp/intel/peripheral/libupm/src/gas/
tp401.cxx
25
#include "
tp401
.h"
29
TP401
::
TP401
(int gasPin) : Gas (gasPin) {
33
TP401
::~
TP401
() {
37
TP401
::getPPM() {
38
return 25.0 * (float)
TP401
::getSample() / 1023.0;
tp401.h
33
* @sensor
tp401
35
* @altname
TP401
Gas Sensor
41
* @brief API for the Grove
TP401
Air Quality Sensor
43
* The Grove
TP401
Air Quality Sensor module is useful for monitoring air purity indoors.
51
* @image html
tp401
.jpeg
52
* @snippet
tp401
.cxx Interesting
54
class
TP401
: public Gas {
57
*
TP401
constructor
61
TP401
(int gasPin);
64
*
TP401
destructo
[
all
...]
/hardware/bsp/intel/peripheral/libupm/examples/python/
tp401.py
24
import pyupm_gas as
TP401
35
airSensor =
TP401
.
TP401
(0)
/hardware/bsp/intel/peripheral/libupm/examples/c++/
tp401.cxx
28
#include "
tp401
.h"
46
upm::
TP401
* airSensor = new upm::
TP401
(0); // Instantiate new grove air quality sensor on analog pin A0
/hardware/bsp/intel/peripheral/libupm/examples/java/
TP401Sample.java
50
upm_gas.
TP401
airSensor = new upm_gas.
TP401
(0);
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
tp401.js
52
var airSensor = new upmTP401.
TP401
(0);
Completed in 183 milliseconds