Skip to content

Commit 708c337

Browse files
committed
Bumped version number
1 parent 0657b80 commit 708c337

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

firmware/PietteTech_DHT.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
#include "application.h"
2929

30-
#define DHTLIB_VERSION "0.2"
30+
#define DHTLIB_VERSION "0.3"
3131

3232
// device types
3333
#define DHT11 11

firmware/examples/DHT_simple.ino

100644100755
+3-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
* Improved timing, moved FP math out of ISR
1414
*/
1515

16-
#include "PietteTech_DHT/PietteTech_DHT.h"
16+
#include "PietteTech_DHT/PietteTech_DHT.h" // Uncomment if building in IDE
17+
//#include "PietteTech_DHT.h" // Uncommend if building using CLI
1718

1819
#define DHTTYPE DHT22 // Sensor type DHT11/21/22/AM2301/AM2302
19-
#define DHTPIN 3 // Digital pin for communications
20+
#define DHTPIN 2 // Digital pin for communications
2021

2122
//declaration
2223
void dht_wrapper(); // must be declared before the lib initialization

0 commit comments

Comments
 (0)