8
8
9
9
# Temperature
10
10
11
- Arduino library with dewPoint, humidex, heatIndex and windchill functions.
11
+ Arduino library with dewPoint, humidex, heatIndex and wind-chill functions.
12
12
13
13
14
14
## Description
@@ -25,32 +25,32 @@ DHT22 or Sensirion, to make a weather station application.
25
25
26
26
### Conversion
27
27
28
- - ** float Fahrenheit(float celsius )** idem.
29
- - ** float Celsius(float fahrenheit )** idem.
30
- - ** float Kelvin(float celsius )** idem.
28
+ - ** float Fahrenheit(float Celsius )** idem.
29
+ - ** float Celsius(float Fahrenheit )** idem.
30
+ - ** float Kelvin(float Celsius )** idem.
31
31
32
32
33
33
### DewPoint, humidex
34
34
35
- - ** float dewPoint(float celsius , float humidity)** idem.
36
- - ** float dewPointFast(float celsius , float humidity)** idem.
37
- - ** float humidex(float celsius , float dewPoint)** idem.
35
+ - ** float dewPoint(float Celsius , float humidity)** idem.
36
+ - ** float dewPointFast(float Celsius , float humidity)** idem.
37
+ - ** float humidex(float Celsius , float dewPoint)** idem.
38
38
39
39
40
40
### heatIndex
41
41
42
- - ** float heatIndex(float fahrenheit , float humidity)** idem.
43
- - ** float heatIndexC(float celsius , float humidity)** idem.
42
+ - ** float heatIndex(float Fahrenheit , float humidity)** idem.
43
+ - ** float heatIndexC(float Celsius , float humidity)** idem.
44
44
45
45
46
46
### WindChill
47
47
48
48
Wind speed @ 10 meter, if ** convert** is true => wind speed will be converted to 1.5 meter
49
49
else ==> formula assumes wind speed @ 1.5 meter
50
50
51
- - ** float WindChill_F_mph(float fahrenheit , float milesPerHour, bool convert = true)**
52
- - ** float WindChill_C_kmph(float celcius , float kilometerPerHour, bool convert = true)**
53
- - ** float WindChill_C_mps(float celsius , float meterPerSecond, bool convert = true)**
51
+ - ** float WindChill_F_mph(float Fahrenheit , float milesPerHour, bool convert = true)**
52
+ - ** float WindChill_C_kmph(float Celsius , float kilometerPerHour, bool convert = true)**
53
+ - ** float WindChill_C_mps(float Celsius , float meterPerSecond, bool convert = true)**
54
54
55
55
56
56
## Operations
@@ -65,6 +65,7 @@ See examples for typical usage.
65
65
66
66
# Future
67
67
68
+ - improve documentation
68
69
- expand number of formulas
69
70
-
70
71
0 commit comments