Read the sensor’s measured temperature value.
HTS.readTemperature()
HTS.readTemperature(units)
The temperature in degrees Fahrenheit or Celsius, depending on the units requested.
float temperature = HTS.readTemperature();
Serial.print("Temperature = ");
Serial.print(temperature);
Serial.println(" °C");