Hi,
My weather station has both current temperature and current humidity, but it continuously displays N/A for humidex (or is it heat index) ?
My template uses this:
```
Humidex: $current.heatindex
```
and my `skin.conf` translates heatindex to Humidex:
```
[[Generic]]
# Generic labels, keyed by an observation type.
barometer = Barometre
dewpoint = Point de rosee
heatindex = Humidex
```
I'm not sure I'm doing the right thing.
If I query the database :
```
sqlite> select barometer, pressure,outTemp,outHumidity,heatindex from archive where dateTime = 1689884400;
1010.28419008758|998.764391620552|24.8333333333333|93.0|<select heatindex from archive where dateTime = 1689884400;
```
Notice I do have values for everything except heatindex (no value).
Why don't I have any value? How can I enable it?
Thanks
PS. I'm using Weewx 4.10.2 on a RPi.