• 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. Old_Death
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
O
Offline
  • Profile
  • Following 0
  • Followers 0
  • Topics 3
  • Posts 9
  • Groups 0

Old_Death

@Old_Death

0
Reputation
1
Profile views
9
Posts
0
Followers
0
Following
Joined Apr 15, 2024, 3:18 PM
Last Online 2 days ago

Old_Death Unfollow Follow

Latest posts made by Old_Death

  • MMM-ModuleScheduler

    I have a working mirror. Now I would like to have an image from a folder displayed at a certain time of the day.

    The MMM-ModuleScheduler module seems to be able to do this to me, but I can’t get it to work.

    Nothing is happening here. Does anyone have a tip for me?

    Thank you.

    modules: [
        {
           module: "alert",
          module: "MMM-ModuleScheduler",
    	  },
         
    //Backround    
        {
          module: "MMM-Wallpaper",
          position: "fullscreen_below",
          config: {
          source: "local:/home/pi/MagicMirror/pic/",
          slideInterval: 600 * 1000
        }
        },
        
    //Overlay   
        {
          module: 'MMM-ModuleScheduler',
          config: {
          module: "MMM-Wallpaper",
          position: "fullscreen_above",
          config: { 
          module_schedule: {from: "0 18 * * *", to: "0 19 * * *" },
          source: "local:/home/pi/MagicMirror/pic2/",
          slideInterval: 600 * 1000  
          }
          } 
        },
    
    posted in Troubleshooting
    O
    Old_Death
    Feb 1, 2025, 9:35 AM
  • RE: MMM-CalendarExt3Agenda no longer works after a certain time.

    @MMRIZE Hallo,
    now I tested the Module and it works fantasic.
    Thank you very much.

    posted in Troubleshooting
    O
    Old_Death
    May 9, 2024, 5:36 AM
  • RE: MMM-CalendarExt3Agenda no longer works after a certain time.

    @MMRIZE Sorry, I was waiting for your replay. Now I has updated the Module and I will tell you soon, if it works korrekt.
    Thank you.

    posted in Troubleshooting
    O
    Old_Death
    May 7, 2024, 2:26 PM
  • MMM-CalendarExt3Agenda no longer works after a certain time.

    I have completely set up the MagicMirror, which means all modules are configured and display the data correctly.
    The modules likely to be affected by the problem are:
    Calendar module, shows all dates.
    MMM-CalendarExt3, gets the data and displays it correctly.
    MMM-CalendarExt3Agenda, gets the data and displays it correctly.
    What can be said about the MMM-CalendarExt3Agenda module is that it changes the data. See post here:
    https://forum.magicmirror.builders/topic/18707/modul-calendarext3agenda/12?page=2

    Now I put the MagicMirror in the right place and noticed the following error.
    After about 40 minutes of running time, no more data will be displayed in the MMM-CalendarExt3Agenda module.
    Only an empty mini calendar is displayed.

    The other modules (Calendar and MMM-CalendarExt3) display the data.

    Does anyone know the problem or can help me troubleshoot?

    posted in Troubleshooting
    O
    Old_Death
    May 5, 2024, 6:14 PM
  • RE: Modul CalendarExt3Agenda

    @MMRIZE Thank you very much, it works now!

    posted in Troubleshooting
    O
    Old_Death
    May 2, 2024, 3:41 PM
  • RE: Modul CalendarExt3Agenda

    @MMRIZE said in Modul CalendarExt3Agenda:

    ’
    I also have a fundamental question of understanding.
    The ’ character is used in the examples here.
    I have to use the character " for it to work.
    Why is that?

    posted in Troubleshooting
    O
    Old_Death
    May 2, 2024, 12:30 PM
  • RE: Modul CalendarExt3Agenda

    @MMRIZE
    thanks for the answer and the patch.

    I installed this, but unfortunately there was no improvement in the result.
    If I enter it like in the example, there are no more entries.

    The points for the appointments are only displayed correctly in the mini calendar.

    Here is my config for the module.

    {
          module: "MMM-CalendarExt3Agenda",
          carouselId: "Seite2",
          position: "top_left",
          header: "Natalia",
          config: {
          instanceId: "basicCalendar",
          locale: 'de-DE',
          firstDayOfWeek: 1,
          startDayIndex: -1,
    		  endDayIndex: 15,
          onlyEventDays: 15,
          eventFilter: (ev) => {
    	         return (ev.title.search("Natalia:") > -1)
          },
          eventTransformer: (ev) => {
    	         ev.title = ev.title.replace("Natalia:", "")
    	         return ev
         }
         }
         },
    
    posted in Troubleshooting
    O
    Old_Death
    May 2, 2024, 12:28 PM
  • RE: Modul CalendarExt3Agenda

    I only want the dates to be shown with the title “Natalia”. These titles should then be changed. The text “Natalia” should be removed here.

    posted in Troubleshooting
    O
    Old_Death
    May 1, 2024, 4:46 AM
  • Modul CalendarExt3Agenda

    Hello,
    I would like to combine the two functions eventFilter and eventTransform.
    Here is the example:

    eventFilter: (ev) => {
    if (ev.title.search(“Natalia:”)) return false
    return true
    },
    eventTransform: (ev) => {
    if (ev.title.search(“Natalia:”) > -1) ev.title=ev.title.replace(“Natalia:”,“”);
    return ev
    }

    But only the first function (Filter) works, but not the second (Transform)

    Can someone please help me with this?
    Thanks

    posted in Troubleshooting
    O
    Old_Death
    Apr 30, 2024, 3:21 PM
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