From 1cb8066165ef31ea90b30ddaeb900016456efb42 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht <31932013+gschorcht@users.noreply.github.com> Date: Thu, 28 Sep 2017 01:25:46 +0200 Subject: [PATCH] Small corrections --- extras/sht3x/sht3x.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/extras/sht3x/sht3x.h b/extras/sht3x/sht3x.h index 06f44e1..298948f 100644 --- a/extras/sht3x/sht3x.h +++ b/extras/sht3x/sht3x.h @@ -45,7 +45,6 @@ #include "stdbool.h" #include "FreeRTOS.h" -#include "queue.h" #include "i2c/i2c.h" @@ -63,8 +62,8 @@ extern "C" { * @brief actual or average value set type */ typedef struct { - float temperature_c; // temperature in degree Fahrenheit - float temperature_f; // temperature in degree Celcius + float temperature_c; // temperature in degree Celcius + float temperature_f; // temperature in degree Fahrenheit float humidity; // humidity in percent } sht3x_value_set_t;