Home
last modified time | relevance | path

Searched refs:temp_raw (Results 1 – 3 of 3) sorted by relevance

/AliOS-Things-master/components/sensor/drv/
A Ddrv_temp_humi_sensirion_sht30.c108 int32_t temp_raw = 0; in drv_sht30_read_temp_and_humi() local
119 temp_raw = (int)(data[0] << 8 | data[1]); in drv_sht30_read_temp_and_humi()
123 *temperature = (int32_t)((21875 * temp_raw) >> 13) - 45000; in drv_sht30_read_temp_and_humi()
A Ddrv_temp_humi_sensirion_sht31.c108 int32_t temp_raw = 0; in drv_sht31_read_temp_and_humi() local
119 temp_raw = (int)(data[0] << 8 | data[1]); in drv_sht31_read_temp_and_humi()
123 *temperature = (int32_t)((21875 * temp_raw) >> 13) - 45000; in drv_sht31_read_temp_and_humi()
A Ddrv_temp_humi_sensirion_shtc1.c141 int temp_raw = 0; in drv_shtc1_read_temp_and_humi() local
153 temp_raw = (int)(data[0] << 8 | data[1]); in drv_shtc1_read_temp_and_humi()
157 *temperature = (int32_t)((21875 * temp_raw) >> 13) - 45000; in drv_shtc1_read_temp_and_humi()

Completed in 6 milliseconds