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