We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0657b80 commit 708c337Copy full SHA for 708c337
firmware/PietteTech_DHT.h
@@ -27,7 +27,7 @@
27
28
#include "application.h"
29
30
-#define DHTLIB_VERSION "0.2"
+#define DHTLIB_VERSION "0.3"
31
32
// device types
33
#define DHT11 11
firmware/examples/DHT_simple.ino
100644
100755
@@ -13,10 +13,11 @@
13
* Improved timing, moved FP math out of ISR
14
*/
15
16
-#include "PietteTech_DHT/PietteTech_DHT.h"
+#include "PietteTech_DHT/PietteTech_DHT.h" // Uncomment if building in IDE
17
+//#include "PietteTech_DHT.h" // Uncommend if building using CLI
18
19
#define DHTTYPE DHT22 // Sensor type DHT11/21/22/AM2301/AM2302
-#define DHTPIN 3 // Digital pin for communications
20
+#define DHTPIN 2 // Digital pin for communications
21
22
//declaration
23
void dht_wrapper(); // must be declared before the lib initialization
0 commit comments