From 5c33d22cb51dd1c77c40b0c01d45f633c9697fc7 Mon Sep 17 00:00:00 2001 From: flamerten Date: Sat, 17 Dec 2022 23:17:22 +0800 Subject: [PATCH] Fix Clang for documentation --- Adafruit_BME280.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Adafruit_BME280.cpp b/Adafruit_BME280.cpp index 214e402..111a3df 100644 --- a/Adafruit_BME280.cpp +++ b/Adafruit_BME280.cpp @@ -451,7 +451,8 @@ float Adafruit_BME280::readAltitude(float seaLevel) { * Computes Heat Index based on https://byjus.com/heat-index-formula/ * @param isCelcius - if true return Heat Index in degrees celcius else return * in Farenheit - * @returns Heat Index in Celcius or Farenhite depending on parameter isCelcius + * @returns Heat Index in Celcius or Farenhite depending on parameter + * isCelcius */ float Adafruit_BME280::readHeatIndex(bool isCelcius) { float tempF = readTemperature() * 1.8 + 32;