Skip to content
Snippets Groups Projects
Commit 822007fa authored by Michel Rottleuthner's avatar Michel Rottleuthner
Browse files

drivers/dht: fix fake parsing error with DHT22

parent fef632aa
No related branches found
No related tags found
No related merge requests found
......@@ -152,6 +152,7 @@ int dht_read(dht_t *dev, int16_t *temp, int16_t *hum)
else {
*temp = (int16_t)raw_temp;
}
break;
default:
return -2;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment