Read the statement by Michael Teeuw here.
24 Hour clock problem
-
I don’t know how to,when I paste in the textfile I lose all tabs so you have to put in them
{
disabled: false,
module: ‘calendar’,
header: ‘Namnsdagar’,
position: ‘bottom_left’,
config: {
colored: ‘true’,
timeFormat: ‘absolute’,
maximumEntries: 5,
fullDayEventDateFormat: ‘Do MMM’,
showEnd: false,
urgency: 1,
calendars: [
{
color: ‘#00ff00’,
symbol:'calendar-check-o ',
url: ‘http://www.webcal.fi/cal.php?id=99’
},
]
}
}, -
i can try do i have to paste my own google link in insted of urs?
-
@nilnik said in 24 Hour clock problem:
I don’t know how to,when I paste in the textfile I lose all tabs so you have to put in them
https://forum.magicmirror.builders/topic/4247/how-to-post-code-on-the-forum-for-absolute-beginners
-
Thanks, we learn all the time . Happy New year
-
I think i have done some wrong but cant find it, there is just the clock in the MM now, no calendar.
-
Everything has gone except of the clock?
-
-
I try to do it all over do anyone have a clear starting config i can copy?
-
You don’t have your config.js.sample file?
var config = { address: "localhost", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"], language: "en", timeFormat: 24, units: "metric", modules: [ { module: "alert", }, { module: "updatenotification", position: "top_bar" }, { module: "clock", position: "top_left" }, { module: "calendar", header: "US Holidays", position: "top_left", config: { calendars: [ { symbol: "calendar-check-o ", url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics" } ] } }, { module: "compliments", position: "lower_third" }, { module: "currentweather", position: "top_right", config: { location: "New York", locationID: "", //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city appid: "YOUR_OPENWEATHER_API_KEY" } }, { module: "weatherforecast", position: "top_right", header: "Weather Forecast", config: { location: "New York", locationID: "5128581", //ID from http://www.openweathermap.org/help/city_list.txt appid: "YOUR_OPENWEATHER_API_KEY" } }, { module: "newsfeed", position: "bottom_bar", config: { feeds: [ { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" } ], showSourceTitle: true, showPublishDate: true } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") {module.exports = config;}
-
Everyone! Please, use the Markdown features of the forum when posting code.
@rasmus-rytter said in 24 Hour clock problem:
Everything has gone except of the clock?
Looking at your
config.js
file, you are missing the code to include the clock module entirely. @Mykle1 has it correct: It’s best at this point to copy theconfig.js.sample
file toconfig.js
and just start from a known working baseline.