Sure, here is the weather part of my config.js file (I just redacted some personal information).
I have three different parts of this module (Current, hourly and daily).
The one with the problem (Feels like temperature wrong) is the first instance (current).
{
module: "weather",
position: "top_right",
config: {
weatherProvider: "openmeteo",
type: "current",
appendLocationNameToHeader: false,
lat: ,
lon: ,
degreeLabel: true,
updateInterval: 300000,
showPrecipitationProbability: true,
showPrecipitationAmount: true,
showUVIndex: true,
showFeelsLike: true
}
},
{
module: "weather",
position: "bottom_right",
config: {
weatherProvider: "openmeteo",
type: "hourly",
appendLocationNameToHeader: false,
lat: ,
lon: ,
degreeLabel: true,
updateInterval: 300000,
fade: false,
maxEntries: 12,
showPrecipitationProbability: true,
showPrecipitationAmount: true,
showUVIndex: true
}
},
{
module: "weather",
position: "bottom_right",
config: {
weatherProvider: "openmeteo",
type: "daily",
appendLocationNameToHeader: false,
lat: ,
lon: ,
degreeLabel: true,
updateInterval: 300000,
fade: false,
maxEntries: 5,
ignoreToday: false,
showPrecipitationProbability: true,
showPrecipitationAmount: true
}
},