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

    anagallis

    @anagallis

    1
    Reputation
    1
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Location Lyon, France

    anagallis Unfollow Follow

    Best posts made by anagallis

    • RE: MMM-ModuleScheduler: need help

      @sdetweil
      I found my mistake!
      I have copy the custom.css in the path /home/pi/MagicMirror/css and it works great!

      You’ve just helped me make the schedule accessible to a group of people with disabilities who can’t read. I’m going to show them their half-day schedule using pictures.

      It’s great that you took the time to help us—thanks again!

      posted in Showcase
      A
      anagallis

    Latest posts made by anagallis

    • RE: MMM-ModuleScheduler: need help

      @sdetweil
      I found my mistake!
      I have copy the custom.css in the path /home/pi/MagicMirror/css and it works great!

      You’ve just helped me make the schedule accessible to a group of people with disabilities who can’t read. I’m going to show them their half-day schedule using pictures.

      It’s great that you took the time to help us—thanks again!

      posted in Showcase
      A
      anagallis
    • RE: MMM-ModuleScheduler: need help

      It’s great!
      But I have a problem with the css.
      css is applied only if I set the id=“_”, and if I have only one id with this value.

      When I replace

      id='L2_'
      

      by

      id='_'
      

      See bellow if I done a mistake.

      here is my custom.css:

      #L1_randomPhoto, #L2_randomPhoto, #Ma1_randomPhoto, #Ma2_randomPhoto, #Me1_randomPhoto, #Me2_randomPhoto, #J1_randomPhoto, #J2_randomPhoto, #V1_randomPhoto, #V2_randomPhoto img {
          opacity: 0;
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          object-fit: cover;
      }
      
      #L1_randomPhoto, #L2_randomPhoto, #Ma1_randomPhoto, #Ma2_randomPhoto, #Me1_randomPhoto, #Me2_randomPhoto, #J1_randomPhoto, #J2_randomPhoto, #V1_randomPhoto, #V2_randomPhoto img.grayscale {
          filter: grayscale(100%);
      }
      ....etc
      

      .
      and a part of the config.json :

      	modules: [
              {
                  module: 'MMM-ModuleScheduler',
                  config: {
                      // SHOW MODULES WITH THE CLASS 'lundimatin' AT 09:00 AND HIDE AT 13:00 EVERY LUNDI
                      //global_schedule: {from: '0 9 * * *', to: '0 13 * * *', groupClass: 'lundimatin'},
                      // SHOW MODULES WITH THE CLASS 'lundiaprem' AT 14:00 AND HIDE AT 17:00 EVERY LUNDI
                      //global_schedule: {from: '0 9 * * *', to: '0 17 * * *', groupClass: 'lundiaprem'},         
                  }
              },
              {
                  module: 'MMM-RandomPhoto',
                  position: 'fullscreen_below',
              	classes: 'scheduler',
                  config: {
      				module_schedule: {from: '0 9 * * 1', to: '0 13 * * 1' },
                      imageRepository: "localdirectory",
                      repositoryConfig: {
                          path: "/home/pi/MagicMirror/modules/Images/lundimatin/",
                          recursive: true,
                          exclude: ["tmp", "#recycle"],
                      },
                      updateInterval: 5,
                      opacity: "1",
                      id: 'L1_',
                  }
              },
              {
                  module: 'MMM-RandomPhoto',
                  position: 'fullscreen_below',
              	classes: 'scheduler',
                  config: {
      				module_schedule: {from: '0 13 * * 1', to: '0 17 * * 1' },
                      imageRepository: "localdirectory",
                      repositoryConfig: {
                          path: "/home/pi/MagicMirror/modules/Images/lundiaprem/",
                          recursive: true,
                          exclude: ["tmp", "#recycle"],
                      },
                      updateInterval: 5,
                      opacity: "1",
                      id: 'L2_',
                  }
              },
      
      posted in Showcase
      A
      anagallis
    • RE: MMM-ModuleScheduler: need help

      Waowww! You did a fork for us, marvelous!
      Many thanks @sdetweil

      I’ll test it, and i’ll say you later if if works here.

      posted in Showcase
      A
      anagallis
    • RE: MMM-ModuleScheduler: need help

      @sdetweil aaaah ok, it’s not multiple instances! I understand the problem now.

      The second version you give of the Random-Photo module can’t display local images, it’s only for images via the net. But thank you.

      l have to find a new image module, witch can be multiple instances and with picture in local directories.

      posted in Showcase
      A
      anagallis
    • RE: MMM-ModuleScheduler: need help

      Many thanks @sdetweil ,

      Here is what I done, and MM only displays pictures from the first MMM-RandomPhoto, the class ‘lundimatin’ and we’re mondy afternoon, not morning…

      	modules: [
              {
                  module: 'MMM-ModuleScheduler',
                  config: {
                      // SHOW MODULES WITH THE CLASS '*********' AT **:00 AND HIDE AT **:00 EVERY DAY
                      notification_schedule: [
                      // SHOW AN ALERT toutes les minutes impairs
                      {notification: 'SHOW_ALERT', schedule: '1-59/2 * * * *', payload: {type: "notification", title: 'Impaire !'}},
                      // SHOW AN ALERT toutes les minutes pairs
                      {notification: 'SHOW_ALERT', schedule: '*/2 * * * *', payload: {type: "notification", title: 'Paire !'}},
                      // SHOW MODULES WITH THE CLASS 'lundimatin' AT 09:00 AND HIDE AT 13:00 EVERY LUNDI
                      {from: '0 9 * * *', to: '0 13 * * 1', groupClass: 'lundimatin'},
                      // SHOW MODULES WITH THE CLASS 'lundiaprem' AT 14:00 AND HIDE AT 17:00 EVERY LUNDI
                      {from: '0 14 * * *', to: '0 17 * * 1', groupClass: 'lundiaprem'},
                      // SHOW MODULES WITH THE CLASS 'mardimatin' AT 09:00 AND HIDE AT 13:00 EVERY MARDI
                      {from: '0 9 * * *', to: '0 13 * * 2', groupClass: 'mardimatin'},
                      // SHOW MODULES WITH THE CLASS 'mardiaprem' AT 14:00 AND HIDE AT 17:00 EVERY MARDI
                      {from: '0 14 * * *', to: '0 17 * * 2', groupClass: 'mardiaprem'},
                  ]                
                  }
              },
              {
                  module: 'MMM-RandomPhoto',
                  position: 'fullscreen_below',
                  classes: 'lundimatin',
                  config: {
                      imageRepository: "localdirectory",
                      repositoryConfig: {
                          path: "/home/pi/MagicMirror/modules/Images/lundimatin/",
                          recursive: true,
                          exclude: ["tmp", "#recycle"],
                      },
                      updateInterval: 5,
                      opacity: "0.9",
                  }
              },
              {
                  module: 'MMM-RandomPhoto',
                  position: 'fullscreen_below',
                  classes: 'lundiaprem',
                  config: {
                      imageRepository: "localdirectory",
                      repositoryConfig: {
                          path: "/home/pi/MagicMirror/modules/Images/lundiaprem/",
                          recursive: true,
                          exclude: ["tmp", "#recycle"],
                      },
                      updateInterval: 5,
                      opacity: "0.9",
                  }
              },
      

      Do you see where is my problem, please?

      posted in Showcase
      A
      anagallis
    • MMM-ModuleScheduler: need help

      Hello,

      I need help to use the MMM-ModuleScheduler,
      I don’t know how to config this module to display other modules at chosen times.
      My need is to display picture module witch display different pictures on different times. Actually I use MMM-RandomPhoto, because I can configure a path with pictures.
      I want to display pictures from the path:

      • ‘MondayMorning/’ on monday morning from 9h00 to 12h00
      • ‘Mandayafternoon/’ on monday from 13h00 to 17h00
      • ‘thuesdaymorning’ on thuesday form 9 to 12, etc…

      I can’t understand how to do that… is there somebody to help me please?

      posted in Showcase
      A
      anagallis
    • RE: Need help to install MMM-Face-Multi-User-Recognition-SMAI

      Hi @sdetweil ,
      Sorry for the delay and thanks for this info.
      We’ll test this module.

      posted in Troubleshooting
      A
      anagallis
    • Need help to install MMM-Face-Multi-User-Recognition-SMAI

      Hello,
      I would like to install the multi-user facial recognition module on a Raspberry Pi 5, but so far I haven’t been able to do so.
      Can anyone help me?

      I work with people with disabilities who need guidance throughout the day, and I would like to display their daily activities when they stand in front of the Magic Mirror.
      It seems to me that the MMM-Face-Multi-User-Recognition-SMAI module would be perfectly suited for this, right?
      I have an RPI5, and I’ve tried many times, but I can’t get it to work. The best I’ve managed is to recognize a single person when I run the script in ssh. And the MM doesn’t do anything.

      From what I’ve read, I get the impression that it’s a difficult installation and that there isn’t much activity around this topic.

      Do you have any advice?
      Thanks in advance,
      Laurent

      posted in Troubleshooting
      A
      anagallis