From 299d4cf8d1376cd750089cab37d1df6d85e6fac6 Mon Sep 17 00:00:00 2001 From: jerick Date: Mon, 12 Dec 2022 07:46:24 -0500 Subject: [PATCH] troubleshooting --- mqtt/tempSensor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mqtt/tempSensor.py b/mqtt/tempSensor.py index b9899c8..86bcde4 100644 --- a/mqtt/tempSensor.py +++ b/mqtt/tempSensor.py @@ -39,7 +39,8 @@ def getValues(sensor): try: temp = sensor.temperature humidity = sensor.humidity - + print("Temp:", temp) + print("Humidity:", humidity) #convert to Farenheit temp = (temp * 1.8) + 32 #Round the decimals