Lines Matching defs:bits
45 * Data bits are encoded as pulse length (high time) on the data line.
108 static unsigned char dht11_decode_byte(char *bits)
115 if (bits[i])
125 char bits[DHT11_BITS_PER_READ];
137 bits[i] = t > DHT11_THRESHOLD;
140 hum_int = dht11_decode_byte(bits);
141 hum_dec = dht11_decode_byte(&bits[8]);
142 temp_int = dht11_decode_byte(&bits[16]);
143 temp_dec = dht11_decode_byte(&bits[24]);
144 checksum = dht11_decode_byte(&bits[32]);