Skip to content

Commit c6fb0d3

Browse files
author
Your Name
committed
updated to have one less space
1 parent 8a11682 commit c6fb0d3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Adafruit_DHT_Driver/Adafruit_DHT

0 Bytes
Binary file not shown.

Adafruit_DHT_Driver/Adafruit_DHT.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ int readDHT(int type, int pin) {
119119
(data[4] == ((data[0] + data[1] + data[2] + data[3]) & 0xFF)) ) {
120120
// yay!
121121
if (type == DHT11)
122-
printf("Temp = %d *C, Hum = %d \%\n", data[2], data[0]);
122+
printf("Temp = %d *C, Hum = %d \%\n", data[2], data[0]);
123123
if (type == DHT22) {
124124
float f, h;
125125
h = data[0] * 256 + data[1];

0 commit comments

Comments
 (0)