Read the statement by Michael Teeuw here.
Calendar times in 24 hour format?
-
timeFormat: 24, in calendar module not work.
How can i check is my time and timezone correctly set?
Im from Poland so i set Europe/Warsaw time in raspi-config.
My clock works correctly.When i change timeFormat to 12 calendar add PM to 03:00 so it’s correctly, but when i change to 24, PM disappear.
-
@MrEdOne said in Calendar times in 24 hour format?:
but when i change to 24, PM disappear.
That makes perfect sense. 24 hour format would NOT show AM/PM, only 12 hour format would do that.
3:00 PM in 12 hour format
1500 in 24 hour format (no PM)
-
Yes, but it won’t change 03:00 to 15:00
-
Oh ok, that’s different
It sounds like something is overriding the timeFormat: setting. Have you made any changes to the calendar.js file?
-
Nope. A search only where is a timeformat in js but my knowledge is to small. :)
-
Are you typing
timeformat
? That won’t work.It has to be
timeFormat
with a capitalF
.Wait a minute, the only options for
timeFormat
in the calendar module areabsolute
orrelative
-
But it not change anything.
With absolute and relative is the same. -
It has to be
timeFormat
with a capitalF
. And at the top of your config also/* Magic Mirror Config * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ var config = { port: 8080, language: 'en', timeFormat: 24, units: 'metric',
-
Yes. I have everywhere timeFormat. on a top of config and in calendar module with capital F
-
I give up. I don’t know where is error.