• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
  1. Home
  2. Gr1dL0ck
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
G
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 6
  • Posts 22
  • Groups 0

Gr1dL0ck

@Gr1dL0ck

1
Reputation
1
Profile views
22
Posts
0
Followers
0
Following
Joined Feb 12, 2021, 7:47 AM
Last Online Mar 6, 2021, 12:26 AM

Gr1dL0ck Unfollow Follow

Best posts made by Gr1dL0ck

  • RE: Calendar date format

    @sdetweil

    not sure if this is what you mean, but still nothing changes, all dates are still MM/DD/YYYY

    Showtime: “absolute”, no idea where this is mentioned in the document, unsure where it goes.

    dateFormat - config option, in the configuration

    // The config property is optional.
    // If no config is set, an example calendar is shown.
    // See ‘Configuration options’ for more information.

    {
           module: “calendar”,
           header: “AU Holidays”,
           position: “top_left”,
              config: {
                      showtime: "absolute",
                     dateFormat: “DD MMM”,
                      calendars: [
                                 {
                                 symbol: “calendar-check”,
                                 url: “https://calendar.google.com……”
                                  },
                                  ]
                     },
    },
    
    

    as for reading the document, I have ctrl+f ’ showtime’ , ‘Not calendar’ all these things you mention in each post, so unless we are reading different documents … I have zero idea where you are getting the information from

    you can keep being condescending as much as you want, trying my best i have been doing this for around 7 days.

    This thread could of been 3 posts long, describe the issue, post an answer with an explanation and a last reply of thankyou this helps alot.

    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 19, 2021, 4:29 AM

Latest posts made by Gr1dL0ck

  • RE: 7" and 5" displays

    @harney

    how did you get the sun/moon to come up and in color like that ?

    could you post some of the code to that

    posted in Show your Mirror
    G
    Gr1dL0ck
    Feb 23, 2021, 7:19 AM
  • RE: MMM-Traffic

    @sdetweil

    The console logs display this, sorry dont know what it means

    Uncaught TypeError: console.log is not a function   MMM-Traffic.js.135
         at Class.socketNotificationRecieved (MMM-Traffic.js.135)
         at module.js.250
         at socket. <anonymous> (socketclient.js.39)
         at Socket../node_modules/component-emitter/index.js.Emitter.Emit (index.js.145)
         at Socket.emitEvent (socket.js.253)
         at Socket.onevent (socket.js.240)
         at Socket.MMSocket.self.socket.onevent (socketclient.js.33)
         at Socket.onpacket (socket.js.204)
         at Manager.<anonymous>  (index.js.21)
         at Socket../node_modules/component-emitter/index.js.Emitter.Emit (index.js.145)
    
    
    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 22, 2021, 9:31 AM
  • RE: Calendar date format

    @mrega you were close

    fade : false,
    timeFormat : "absolute",
    dateFormat : "DD MMM",	
    
    

    that fixed it thank you !

    can you explain what the follow is 'Fade: false/ true ’ what does this refer to or alter?

    and what does the “absolute” refer back too ?

    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 22, 2021, 9:05 AM
  • RE: Calendar date format

    @sdetweil

    mine doesn’t even display the default date as per this doc, I would copy a picture but it has a bunch of private appointments in there.

    Default value: MMM Do (e.g. Jan 18th)

    mine displays (for example)

    'appointment 03/10/2021

    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 19, 2021, 4:52 AM
  • RE: Calendar date format

    @sdetweil

    not sure if this is what you mean, but still nothing changes, all dates are still MM/DD/YYYY

    Showtime: “absolute”, no idea where this is mentioned in the document, unsure where it goes.

    dateFormat - config option, in the configuration

    // The config property is optional.
    // If no config is set, an example calendar is shown.
    // See ‘Configuration options’ for more information.

    {
           module: “calendar”,
           header: “AU Holidays”,
           position: “top_left”,
              config: {
                      showtime: "absolute",
                     dateFormat: “DD MMM”,
                      calendars: [
                                 {
                                 symbol: “calendar-check”,
                                 url: “https://calendar.google.com……”
                                  },
                                  ]
                     },
    },
    
    

    as for reading the document, I have ctrl+f ’ showtime’ , ‘Not calendar’ all these things you mention in each post, so unless we are reading different documents … I have zero idea where you are getting the information from

    you can keep being condescending as much as you want, trying my best i have been doing this for around 7 days.

    This thread could of been 3 posts long, describe the issue, post an answer with an explanation and a last reply of thankyou this helps alot.

    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 19, 2021, 4:29 AM
  • RE: Calendar date format

    @sdetweil

    does the showtime: “absolute”, go out of the modules up where it has language, log level, timeformat, units?

    i tried in there didnt make any difference

    i put in down in the module in serval places didnt change, tried both “L” and “DD MMM” on the dateFormat.

    {
           module: “calendar”,
           header: “AU Holidays”,
           position: “top_left”,
              config: {
                      calendars: [
                                 {
                                 symbol: “calendar-check”,
                                 url: “https://calendar.google.com……”
                                 dateFormat: “L”,
                                  },
                                  ]
                     },
    },
    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 18, 2021, 7:37 AM
  • RE: Calendar date format

    @sdetweil

    this is my current config code, i have tried placing it in both positions as shown (one at a time) still doesnt change anything on the calendar.

    I got the ‘L’ command from here https://momentjs.com/docs/#/parsing/string-format/

    DD MMM didnt work

    {
    module: “calendar”,
    header: “AU Holidays”,
    position: “top_left”,
    config: {
    dateFormat: “L”,
    calendars: [
    {
    symbol: “calendar-check”,
    url: “https://calendar.google.com……”
    dateFormat: “L”,
    },
    ]
    },
    },

    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 17, 2021, 10:50 AM
  • RE: Calendar date format

    @sdetweil

    i get it sam, you can paste the user guide and documents all day. i have read them but dont understand the format them hence my posts.

    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 16, 2021, 6:39 AM
  • Calendar date format

    evening all,

    I just need to change the format on my calendar for up coming events which is being displayed in US format MM/DD/YYYY

    I would like to change it to DD MMM

    {
    module: “calendar”,
    header: “AU Holidays”,
    position: “top_left”,
    config: {
    dateformat: “DD MMM”,
    calendars: [
    {
    symbol: “calendar-check”,
    url: “https://calendar.google.com…” }
    ]
    }
    },

    https://docs.magicmirror.builders/modules/calendar.html#configuration-options
    where does the ‘dateformat’ go?
    IS DD MMM a correct format?

    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 15, 2021, 8:36 AM
  • RE: MMM-Traffic

    @gr1dl0ck

    in my Mapbox account i see there have been 11 API requests (from 100,000 free) using the ‘default public token’ in the account page.

    so i think its using the data, but my MM is just sitting on :

    (car icon) Loading …

    posted in Troubleshooting
    G
    Gr1dL0ck
    Feb 14, 2021, 4:13 AM
Enjoying MagicMirror? Please consider a donation!
MagicMirror created by Michael Teeuw.
Forum managed by Sam, technical setup by Karsten.
This forum is using NodeBB as its core | Contributors
Contact | Privacy Policy