Lines Matching +full:100 +full:us
44 * 0-bit: 22-30uS -- typically 26uS (AM2302)
45 * 1-bit: 68-75uS -- typically 70uS (AM2302)
50 * timeres > 34uS ... don't know what a 1-tick pulse is
51 * 34uS > timeres > 30uS ... no problem (30kHz and 32kHz clocks)
52 * 30uS > timeres > 23uS ... don't know what a 2-tick pulse is
53 * timeres < 23uS ... no problem
62 #define DHT11_START_TRANSMISSION_MIN 18000 /* us */
63 #define DHT11_START_TRANSMISSION_MAX 20000 /* us */
150 if (hum_int < 4) { /* DHT22: 100000 = (3*256+232)*100 */ in dht11_decode()
152 ((temp_int & 0x80) ? -100 : 100); in dht11_decode()
153 dht11->humidity = ((hum_int << 8) + hum_dec) * 100; in dht11_decode()