Searched refs:temp_raw (Results 1 – 3 of 3) sorted by relevance
108 int32_t temp_raw = 0; in drv_sht30_read_temp_and_humi() local119 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()
108 int32_t temp_raw = 0; in drv_sht31_read_temp_and_humi() local119 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()
141 int temp_raw = 0; in drv_shtc1_read_temp_and_humi() local153 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 5 milliseconds