I have the default module up and running, but the time appears to be off. For example, my local time currently is 1500 and the Current Weather shows the moon and the sunrise/sunset display is showing the next sunrise time. The header also says ETC/GMT (which I do not have set in my config.js).
// Current Weather Module
{
disabled: false,
module: "weather",
position: "top_right",
header: "Current Weather",
config: {
weatherProvider: "openweathermap",
type: "current",
location: "Norwich",
locationID: "4839843",
apiKey: "XXXX"
}
},
// 5-Day Weather Forecast Module
{
disabled: false,
module: "weather",
position: "top_right",
header: "5-Day Weather Forecast",
config: {
weatherProvider: "openweathermap",
type: "forecast", // Use "forecast" for the 5-day forecast
location: "Norwich",
locationID: "4839843",
apiKey: "XXXXX",
colored: true
}
},
My clock module is set to correct time, and my pi is also set correctly.
Any where else I should check? Thanks.