Skip to content

Commit 57889db

Browse files
authored
Merge branch 'master' into wip
2 parents 29e05e4 + 0fe8739 commit 57889db

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DHT22.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
git clone https://github.com/mstroh76/Sensors-WiringPi.git
2121
cd Sensors-WiringPi/DHT
2222
g++ -o DHT *.cpp -lwiringPi
23-
watch -n 2 ./DHT 4
23+
watch -n 2 ./DHT 22
2424
cd ..
2525
geany DHT.geany &
2626
\end{console}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Anleitung für Raspjamming
33

44

5-
master [![Build Status](https://travis-ci.org/mstroh76/Raspjamming.svg?branch=master)](https://travis-ci.org/mstroh76/Raspjamming)
5+
master [![Build Status](https://travis-ci.org/GrazerComputerClub/Raspjamming.svg?branch=master)](https://travis-ci.org/GrazerComputerClub/Raspjamming)
66

7-
wip [![Build Status](https://travis-ci.org/mstroh76/Raspjamming.svg?branch=wip)](https://travis-ci.org/mstroh76/Raspjamming)
7+
wip [![Build Status](https://travis-ci.org/GrazerComputerClub/Raspjamming.svg?branch=wip)](https://travis-ci.org/GrazerComputerClub/Raspjamming)

source/DHT22.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
while True:
99
try:
1010
res = dht.get_result_once()
11-
print('Temp: ' + '{:.1f}'.format(res[0]) + '°C, Hum: ' + '{:.1f}'.format(res[1]))
11+
print('Temp: ' + '{:.1f}'.format(res[0]) + '°C, Hum: ' + '{:.1f}'.format(res[1]))
1212
except Exception as e:
1313
print(e)
1414
sleep(1)

0 commit comments

Comments
 (0)