DHT-sensor-library icon indicating copy to clipboard operation
DHT-sensor-library copied to clipboard

Arduino library for DHT11, DHT22, etc Temperature & Humidity Sensors

Results 37 DHT-sensor-library issues
Sort by recently updated
recently updated
newest added

Hi Adafruit team, this commit is to add support to the Arduino Nano Matter board that doesn't have declared the **microsecondsToClockCycles()** function. I've tested the code with the Nano Matter...

After some time of usage the sensor not responding. But also not showing any error. It stays freeze at the last read temperature value.

Problem is described in #177 Solution: shift incomming data on int16_t variable before cast to float. I could test this solution only on Arduino IDE 1.8.13 with ESP8266 / DHT...

code: called from stup(): ```c++ _dht = new DHT_Unified(_pin, _type == TemperatureSensorType::DHT11 ? DHT11 : DHT22); _dht->begin(); ``` called from loop, executed each 10 seconds: ```c++ sensors_event_t eventTemp; _dht->temperature().getEvent(&eventTemp); read...

- Arduino board: ESP8266 / NodeMCU 1.0 (ESP12-E Module) - Arduino IDE version (found in Arduino -> About Arduino menu): 1.8.13 - installed DHT-sensor-library version: 1.4.1 / installed by Arduino...

Estou com problemas ao ativar um relé, eu estou utilizando esse sensor para quando a temperatura estiver maior que 30 ele ative o relé, além disso também estou utilizando a...

The "S" param of the readTemperature method in DHT.cpp overlapped with some constant names in the SPIMemory library, which caused me problems. Tiny change, just modified every instance of S...

- Arduino board: Raspberry Pi Pico (RP2040 B1) - Arduino IDE version (found in Arduino -> About Arduino menu): PlatformIO `earlephilhower` core - List the steps to reproduce the problem...

`Thank` you for creating a pull request to contribute to Adafruit's GitHub code! Before you open the request please review the following guidelines and tips to help it be more...

I have a large sketch, which is used either with DHT11 or DHT22. I am wondering if it is possible to let automatically find the right sensor type. When the...