GY-63_MS5611/libraries/Temperature
2021-05-28 14:16:25 +02:00
..
.github/workflows add arduino-lint 2021-05-28 13:17:38 +02:00
examples 2021-01-29 2021-01-29 12:31:58 +01:00
test 2021-01-29 2021-01-29 12:31:58 +01:00
.arduino-ci.yml 2021-01-29 2021-01-29 12:31:58 +01:00
library.json add license to library,json 2021-05-28 14:16:25 +02:00
library.properties 2021-01-29 2021-01-29 12:31:58 +01:00
LICENSE 2021-01-29 2021-01-29 12:31:58 +01:00
readme.md 2021-01-29 2021-01-29 12:31:58 +01:00
temperature.h 2021-01-29 2021-01-29 12:31:58 +01:00

Arduino CI License: MIT GitHub release

Temperature

Arduino library with dewPoint, humidex, heatIndex and windchill functions.

Description

This library contains weather related functions. These functions are approximations based on work of NOAA a.o.

These functions can be used with temperature and humidity sensors e.g. DHT22 or Sensirion, to make a weather station application.

Interface

TO elaborate

Conversion

  • float Fahrenheit(celsius) idem
  • float Celsius(fahrenheit) idem
  • float Kelvin(celsius) idem

DewPoint, humidex

  • float dewPoint(celsius, humidity) idem
  • float dewPointFast(celsius, humidity) idem
  • float humidex(celsius, dewpoint) idem

heatIndex

  • float heatIndex(fahrenheit, humidity) idem
  • float heatIndexC(celsius, humidity) idem

WindChill

Windspeed @ 10 meter, if convert is true => windspeed will be converted to 1.5 meter else ==> formula assumes windspeed @ 1.5 meter

  • float WindChill_F_mph(fahrenheit, milesPerHour, convert = true)
  • float WindChill_C_kmph(celcius, kilometerPerHour, convert = true)
  • float WindChill_C_mps(celsius, meterPerSecond, convert = true)

Operations

The functions have a limited scope so one cannot use it for all input values possible. The user should be aware of that. Check the references mentioned in the code and or wikipedia to confirm the applicability of the values generated. The functions do not check the inputs.

See examples for typical usage.