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