Changed sensor output variable types (fixed warnings)

This commit is contained in:
mj 2022-01-02 14:39:13 +01:00
parent b21cefe412
commit ac68334919
2 changed files with 3 additions and 3 deletions

View File

@ -103,8 +103,8 @@ enum
} identification_registers_numbers; } identification_registers_numbers;
/* Variables to store the measured data */ /* Variables to store the measured data */
int CO2, T_SCD4x, RH_SCD4x; int16_t T_SCD4x, T_SHT4x;
int T_SHT4x, RH_SHT4x; uint16_t CO2, RH_SCD4x, RH_SHT4x;
uint16_t sps30_measured_data[10]; uint16_t sps30_measured_data[10];
/* Struct to store the sensor config */ /* Struct to store the sensor config */