fix print issue

This commit is contained in:
robert 2021-02-14 22:24:28 +01:00
parent 8c35551fcf
commit 6d06b429d5
1 changed files with 3 additions and 3 deletions

View File

@ -59,8 +59,8 @@ while True:
client.publish(time_topic, dt_string)
#Output data to screen
print dt_string
print temperature
print humidity
print(dt_string)
print(temperature)
print(humidity)
time.sleep(30)