From fd10e70adf33f870a39bd2663804ac45e088af0b Mon Sep 17 00:00:00 2001 From: RogueMaster Date: Sun, 16 Oct 2022 00:18:53 -0400 Subject: [PATCH] Update temperature_sensor.c --- applications/plugins/temperature_sensor/temperature_sensor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/plugins/temperature_sensor/temperature_sensor.c b/applications/plugins/temperature_sensor/temperature_sensor.c index 721e2ad7c..c734ff7f7 100644 --- a/applications/plugins/temperature_sensor/temperature_sensor.c +++ b/applications/plugins/temperature_sensor/temperature_sensor.c @@ -259,7 +259,7 @@ int32_t temperature_sensor_app(void* p) { // Blink blue notification_message(notifications, &sequence_blink_blue_100); - if (celsius != TS_DEFAULT_VALUE && humidity != TS_DEFAULT_VALUE)) { + if (celsius != TS_DEFAULT_VALUE && humidity != TS_DEFAULT_VALUE) { // Convert celsius to fahrenheit fahrenheit = (celsius * 9 / 5) + 32;