From 8cc13e8da0453f52c5e40ecc12bf4803b7b2dcf3 Mon Sep 17 00:00:00 2001 From: jerick Date: Mon, 28 Nov 2022 14:20:19 -0500 Subject: [PATCH] Not conversion --- mqtt/tempSensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mqtt/tempSensor.py b/mqtt/tempSensor.py index 07d0579..4381eda 100644 --- a/mqtt/tempSensor.py +++ b/mqtt/tempSensor.py @@ -30,7 +30,7 @@ while True: humidity = sensor.humidity #convert to Farenheit - #temp = (temp * 1.8) + 32 + temp = (temp * 1.8) + 32 print("Temperature: {}*F Humidity: {}% ".format(temp, humidity)) except RuntimeError as error: print(error.args[0])