Go to the documentation of this file.
93 #define BUS (dev->p.i2c)
94 #define ADDR (dev->p.addr)
109 #ifndef CONFIG_TMP00X_I2C_ADDRESS
110 #define CONFIG_TMP00X_I2C_ADDRESS (0x40)
120 #if IS_ACTIVE(CONFIG_TMP00X_CONVERSION_TIME_0_25S)
121 #define CONFIG_TMP00X_CONVERSION_TIME (25E4)
122 #elif IS_ACTIVE(CONFIG_TMP00X_CONVERSION_TIME_0_5S)
123 #define CONFIG_TMP00X_CONVERSION_TIME (5E5)
124 #elif IS_ACTIVE(CONFIG_TMP00X_CONVERSION_TIME_1S)
125 #define CONFIG_TMP00X_CONVERSION_TIME (1E6)
126 #elif IS_ACTIVE(CONFIG_TMP00X_CONVERSION_TIME_2S)
127 #define CONFIG_TMP00X_CONVERSION_TIME (2E6)
128 #elif IS_ACTIVE(CONFIG_TMP00X_CONVERSION_TIME_4S)
129 #define CONFIG_TMP00X_CONVERSION_TIME (4E6)
132 #ifndef CONFIG_TMP00X_CONVERSION_TIME
133 #define CONFIG_TMP00X_CONVERSION_TIME (1E6)
145 #define CONFIG_TMP00X_USE_LOW_POWER
155 #define CONFIG_TMP00X_USE_RAW_VALUES
163 #define TMP00X_CONFIG_CR_AS1 (0x00)
164 #define TMP00X_CONFIG_CR_AS2 (0x01)
165 #define TMP00X_CONFIG_CR_AS4 (0x02)
166 #define TMP00X_CONFIG_CR_AS8 (0x03)
167 #define TMP00X_CONFIG_CR_AS16 (0x04)
168 #define TMP00X_CONFIG_CR_DEF TMP00X_CONFIG_CR_AS4
174 #ifndef TMP00X_CCONST_S0
175 #define TMP00X_CCONST_S0 (6.4E-14)
177 #define TMP00X_CCONST_A1 (1.75E-3)
178 #define TMP00X_CCONST_A2 (-1.678E-5)
179 #define TMP00X_CCONST_TREF (298.15)
180 #define TMP00X_CCONST_B0 (-2.94E-5)
181 #define TMP00X_CCONST_B1 (-5.7E-7)
182 #define TMP00X_CCONST_B2 (4.63E-9)
183 #define TMP00X_CCONST_C2 (13.4)
184 #define TMP00X_CCONST_LSB_SIZE (156.25E-9)
278 void tmp00x_convert(int16_t rawv, int16_t rawt,
float *tamb,
float *tobj);
Device descriptor for TMP00X sensors.
i2c_t i2c
I2C device, the sensor is connected to.
int tmp00x_read(const tmp00x_t *dev, int16_t *rawv, int16_t *rawt, uint16_t *drdy)
Read sensor's data.
@ TMP00X_ERROR_DEV
internal device error
Parameters needed for device initialization.
Common macros and compiler attributes/pragmas configuration.
uint8_t rate
number of averaged samples
unsigned int i2c_t
Default i2c_t type definition.
int tmp00x_set_active(const tmp00x_t *dev)
Set active mode, this enables periodic measurements.
@ TMP00X_ERROR
general error
@ TMP00X_OK
Success, no error.
int tmp00x_init(tmp00x_t *dev, const tmp00x_params_t *params)
Initialize the TMP00X sensor driver.
@ TMP00X_ERROR_CONF
invalid device configuration
@ TMP00X_ERROR_BUS
I2C bus error.
uint8_t addr
the sensor's slave address on the I2C bus
int tmp00x_set_standby(const tmp00x_t *dev)
Set standby mode.
int tmp00x_read_temperature(const tmp00x_t *dev, int16_t *ta, int16_t *to)
Convenience function to get ambient and object temperatures in [°C].
void tmp00x_convert(int16_t rawv, int16_t rawt, float *tamb, float *tobj)
Convert raw sensor values to temperature.
tmp00x_params_t p
Configuration parameters.
int tmp00x_reset(const tmp00x_t *dev)
Reset the TMP00X sensor, afterwards it should be reinitialized.
Low-level I2C peripheral driver interface definition.