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

    MikeSeveno

    @MikeSeveno

    1
    Reputation
    65
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    MikeSeveno Unfollow Follow

    Best posts made by MikeSeveno

    • RE: How to display start and end times/dates of events in calendar

      Thanks that was really useful. My revised config is:
      (start and end date/time, one of many possible formats)

      		config: {
      					dateFormat: "llll",
      

      // dateEndFormat: “YYYY-MMDDTHH:mm:ss”,
      dateEndFormat: “llll”,
      timeFormat: ‘absolute’,
      showEnd: true,
      urgency: 0,
      getRelative: 0,
      fetchInterval: 2 * 60000,

      			calendars: [
      				{
      

      I found this site a bit easier to follow:
      https://devhints.io/moment

      posted in Troubleshooting
      M
      MikeSeveno

    Latest posts made by MikeSeveno

    • RE: How to display start and end times/dates of events in calendar

      Thanks that was really useful. My revised config is:
      (start and end date/time, one of many possible formats)

      		config: {
      					dateFormat: "llll",
      

      // dateEndFormat: “YYYY-MMDDTHH:mm:ss”,
      dateEndFormat: “llll”,
      timeFormat: ‘absolute’,
      showEnd: true,
      urgency: 0,
      getRelative: 0,
      fetchInterval: 2 * 60000,

      			calendars: [
      				{
      

      I found this site a bit easier to follow:
      https://devhints.io/moment

      posted in Troubleshooting
      M
      MikeSeveno
    • RE: How to display start and end times/dates of events in calendar

      @sdetweil Thanks very much Sam. I don’t seem to be able to ever get the start time to display.

      posted in Troubleshooting
      M
      MikeSeveno
    • How to display start and end times/dates of events in calendar

      Hi,
      Do you know if it is possible to display both the start and end time/date for entries with the default calendar module.
      The config I’m using is

      	config: {
      					timeFormat: 'absolute',
      					showEnd: true,
      					urgency: 0,
      					getRelative: 0,
      					fetchInterval: 2 * 60000,
      
      			calendars: [
      				{
      					symbol: "calendar-check",
      

      When showEnd is true only end times are displayed. When showEnd is false no times are displayed.

      Thanks

      posted in Troubleshooting
      M
      MikeSeveno