mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-03 00:59:02 +08:00
eaef5bd133
This reverts commit 1a17e17c462bdd4e1d26d8742f8b7087273e04c2. PUBLISHED_FROM=80028de308c9a021955d1425d2bfee8feb85f193
28 lines
635 B
C
28 lines
635 B
C
/*
|
|
* Copyright (c) 2014-2016 Cesanta Software Limited
|
|
* All rights reserved
|
|
*/
|
|
|
|
#ifndef CS_MONGOOSE_EXAMPLES_CC3200_TMP006_H_
|
|
#define CS_MONGOOSE_EXAMPLES_CC3200_TMP006_H_
|
|
|
|
#include <inttypes.h>
|
|
#include <stdbool.h>
|
|
|
|
enum tmp006_conversion_rate {
|
|
TMP006_CONV_4 = 0,
|
|
TMP006_CONV_2,
|
|
TMP006_CONV_1,
|
|
TMP006_CONV_1_2,
|
|
TMP006_CONV_1_4,
|
|
};
|
|
|
|
bool tmp006_init(uint8_t addr, enum tmp006_conversion_rate conv_rate,
|
|
bool drdy_en);
|
|
double tmp006_read_sensor_voltage(uint8_t addr);
|
|
double tmp006_read_die_temp(uint8_t addr);
|
|
|
|
#define TMP006_INVALID_READING (-1000.0)
|
|
|
|
#endif /* CS_MONGOOSE_EXAMPLES_CC3200_TMP006_H_ */
|