change indexes to floats

This commit is contained in:
tyeth
2022-12-20 17:25:10 +00:00
parent ab0e94cd84
commit d3d2fd776b
2 changed files with 6 additions and 5 deletions

View File

@ -138,9 +138,10 @@ typedef struct {
float current; /**< current in milliamps (mA) */
float voltage; /**< voltage in volts (V) */
float tvoc; /**< Total Volatile Organic Compounds, in ppb */
int32_t voc_index; /**< VOC (Volatile Organic Compound) index where 100 is
normal */
int32_t nox_index; /**< NOx (Nitrogen Oxides) index where 100 is normal */
float voc_index; /**< VOC (Volatile Organic Compound) index where 100 is
normal (unitless) */
float nox_index; /**< NOx (Nitrogen Oxides) index where 100 is normal
(unitless) */
sensors_color_t color; /**< color in RGB component values */
}; ///< Union for the wide ranges of data we can carry
} sensors_event_t;

View File

@ -141,8 +141,8 @@ typedef struct
float current;
float voltage;
float tvoc;
int32_t voc_index;
int32_t nox_index;
float voc_index;
float nox_index;
sensors_color_t color;
};
} sensors_event_t;