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