Searched refs:hum_int (Results 1 – 1 of 1) sorted by relevance
125 unsigned char temp_int, temp_dec, hum_int, hum_dec, checksum; in dht11_decode() local139 hum_int = dht11_decode_byte(bits); in dht11_decode()145 if (((hum_int + hum_dec + temp_int + temp_dec) & 0xff) != checksum) { in dht11_decode()151 if (hum_int < 4) { /* DHT22: 100000 = (3*256+232)*100 */ in dht11_decode()154 dht11->humidity = ((hum_int << 8) + hum_dec) * 100; in dht11_decode()157 dht11->humidity = hum_int * 1000; in dht11_decode()161 hum_int, hum_dec, temp_int, temp_dec); in dht11_decode()