Skip to content
Snippets Groups Projects
Commit b5da8f1f authored by chris007's avatar chris007
Browse files

Fix comments for bme680_sensor_data struct

parent 3c41e8dc
No related branches found
No related tags found
1 merge request!147Integration of BME680 Sensor (#33)
...@@ -686,13 +686,13 @@ API(API_LEDS_CLEAR_ALL, void epic_leds_clear_all(uint8_t r, uint8_t g, uint8_t b ...@@ -686,13 +686,13 @@ API(API_LEDS_CLEAR_ALL, void epic_leds_clear_all(uint8_t r, uint8_t g, uint8_t b
* BME680 Sensor Data * BME680 Sensor Data
*/ */
struct bme680_sensor_data { struct bme680_sensor_data {
/*! Temperature in degree celsius */ /** Temperature in degree celsius */
float temperature; float temperature;
/*! Humidity in % relative humidity */ /** Humidity in % relative humidity */
float humidity; float humidity;
/*! Pressure in Pascal */ /** Pressure in hPa */
float pressure; float pressure;
/*! Gas resistance in Ohms */ /** Gas resistance in Ohms */
float gas_resistance; float gas_resistance;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment