• 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
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

MMM-ProfileSwitcher, A Profile/User/Layout Switching Module

Scheduled Pinned Locked Moved Utilities
userswitchprofilelayoutmodule
91 Posts 21 Posters 111.0k Views 23 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    Blackmirror @Binog
    last edited by May 19, 2017, 7:27 AM

    @Binog
    I understand your question not really.

    I send the current_profile with MMM-Buttons and use it with MMM-RadioDE,
    with
    classes: ‘Radio’
    under the module name

    1 Reply Last reply Reply Quote 0
    • P Offline
      paul.calladine
      last edited by Jan 29, 2018, 1:31 PM

      My mirror is just about finished, I have the MMM-PIRSensor working and MMM-Buttons working which both allow me to wake/sleep the monitor working fine.

      However i’d like to use MMM-Buttons as a toggle switch to enable me to essentially enable or disable the PIR sensor module:

      i.e.
      Profile 1 - PIRSensor wakes and turns off the monitor as normal
      Profile 2 - PIRSensor doesn’t do anything on motion being detected and the screen stays off

      I was thinking of modifying the code to do this but does anyone know if this module will allow me to achieve the results? Essentially having two profiles the same but profile 1 includes the PIRSensor module?

      1 Reply Last reply Reply Quote 0
      • J Offline
        jdfraser
        last edited by Feb 5, 2018, 8:05 AM

        Hello and thanks for creating this module! I have experimenting with creating a photo frame and hope that your ProfileSwitcher will get me the rest of the way there.

        I am having an issue with MMM-ProfileSwitcher and using it with MMM-RandomBackground or MMM-RandomPhoto. I have tried some simple troubleshooting steps, but am not sure how to proceed further and hope you could help.

        I have simplified my config.js to try and eliminate other sources as being the issue. Currently I am experimenting using only the clock module, MMM-RandomBackground and MMM-ProfileSwitcher. I have 3 profiles ‘TestA’, ‘TestB’ and default. I ideally like to be able to show a random photo on my frame and alternate having overlays of weather / time / news / etc. based on the profile.

        My idea is to have a class that shows the random photo at a reduced opacity that can have some overlay infomation (clock, weather, news, etc.). And another class that only shows the photo at full opacity.

        The problem I have is that if my config.js has more than one entry for MMM-RandomBackground, it ignores more than the one entry. I am sure I have configured it correctly and have included my config.js below, but I only see a background photo for “TestA” Profile.

        modules: [
        	   {
        			module: 'MMM-ProfileSwitcher',
        			header: 'Profile',
        			config: {
        				defaultTime: 10000,
        				defaultClass: 'default',
        				everyoneClass: 'everyone',
        				useLockStrings: true,
        				leaveMessages: false,
        				enterMessages: false,
        				timers: {
        					// when TestA is selected swap to the defaultClass after the defaultTime
        					"TestA": {},
        				    	//
        				        // When TestB is selected swap to TestA after 20 seconds
        				        "TestB": {
        						profile: "TestA",
        					    //	time: 20 * 1000
        					},
        					"default": {
        						profile: "TestB"
        					}
        				}
        
        			}
        		},
        		{
        			module: 'alert',
        			displayTime: 10000
        		},
        		{
        			module: "updatenotification",
        			position: "top_bar"
        		},
        		{
        			module: "clock",
        			disabled: false,
        			classes: "TestA",
        			position: "bottom_left",
        			config: {
        				timeFormat: 12,
        				displaySeconds: false,
        				showPeriod: false,
        				clockBold: false,
        				dateFormat: "MMMM Do"
        			}
        		},
        		{
        			module: "clock",
        			disabled: false,
        			classes: "default",
        			position: "top_right",
        			config: {
        				timeFormat: 12,
        				displaySeconds: false,
        				showPeriod: false,
        				clockBold: false,
        				dateFormat: "MMMM Do"
        			}
        		},
        		{
        			module: "clock",
        			disabled: false,
        			classes: "TestB",
        			position: "top_left",
        			config: {
        				timeFormat: 12,
        				displaySeconds: false,
        				showPeriod: false,
        				clockBold: false,
        				dateFormat: "MMMM Do"
        			}
        		},
        		{
        			module : 'MMM-RandomBackground',
        			disabled: false,
        			classes: "TestA",
        			position : 'fullscreen_below', // Any region but this one makes the most sense
        			config : {
        				animationSpeed : 2000,
        				updateInterval : 50000,
        				opacity : 1
        			}
        		},
        			{
        			module : 'MMM-RandomBackground',
        			disabled: false,
        			classes: "TestB",
        			position : 'fullscreen_below', // Any region but this one makes the most sense
        			config : {
        				animationSpeed : 2000,
        				updateInterval : 50000,
        				opacity : 0.5
        			}
        		},
        		]
        
        };
        

        If you are able to offer any insight as to why this might be happening or further troubleshooting I could do, I would greatly appreciate it.

        *** Full disclosure ***
        I originally posted this help request under another topic, but thought there would be a better chance that I might get more timely help with my issue in this topic. Sorry for the cross-post. :)

        1 Reply Last reply Reply Quote 0
        • C Offline
          Cyberdyne
          last edited by Oct 8, 2018, 8:47 AM

          Is it possible to include a BT detection to switch profiles? RPi3 has a build BT which is not used (at least in my configuration) by the MagicMirror. It would be great if personal stuff like the calender could be switched depending on the BT device (Smartphone, Smartwatch, Fitnesstracker, …) which is near by.

          I was searching for identification via BT on the RPi and this is what I have found so far:

          “…present/absent can be done with very little power consumption on rPi and iPhone. Install bluetooth dongle on rPi as: (sudo aptitude install bluetooth bluez-utils bluez-compat). Figure out mac of your phone device by making it searchable and then do (hcitool scan) on rPi. Then connect to your device (make sure its searchable) as: sudo bluez-simple-agent hci0 mac_of_your_device and say yes on both sides. Then sudo bluez-test-device trusted mac_of_your_device. Now they both “know” each other. Then do sudo hcitool name mac_of_your_device in your favourite script to figure out if the iphone is nearby. This will not create a connection - but just say hi to it. If it returns a name, phone is nearby. If it returns nothing - phone is not nearby or bluetooth is switched off. Compared to creating connections or other distance computation methods out there - this method conserves battery on both sides and keeps airwave pollution to a minimum.” (found here)

          and this would be even better with distance sensing:
          https://www.raspberrypi.org/forums/viewtopic.php?f=37&t=47466

          F 1 Reply Last reply Oct 9, 2018, 12:29 AM Reply Quote 1
          • F Offline
            fcornelius @Cyberdyne
            last edited by Oct 9, 2018, 12:29 AM

            @cyberdyne I had the same idea two days ago and did some research on it. I also asked /r/smartmirrors for some advice on it and got pretty good tips. The bottom line is, if you want to have a solid, non hacky solution supporting both iOS/android go the other way round with the use of beacons.

            Thread is here

            1 Reply Last reply Reply Quote 0
            • 3 Offline
              3squaremirror
              last edited by Feb 23, 2023, 6:43 PM

              having issue showing MMM-Profilepicture using MMM-ModuleScheduler and MMM-ProfileSwitcher.

              I’m trying to switch a day and night time image with profilepicture. Using modulescheduler to switch the image based on the time.

              As far as I can tell, each module is running correctly, as I’m not seeing any error in the console log.

              i think the issue has to do with LockStrings, and i don’t know how to fix it

              Will not show MMM-Profilepicture. LockStrings active: module_2_MMM-ProfileSwitcher
              

              my configs

              //////////////////// profile ///////////////////////////
              //////////////////// profile ///////////////////////////
                      {
                          module: 'MMM-ProfileSwitcher',
                          disabled: false,
                          classes: 'default everyone',
                          config: {
                              // See 'Configuration options' for more information.
                                  defaultClass: 'default',
                                  everyoneClass: 'everyone',
                          }
                      },
                  
                   {
                      module: 'MMM-ModuleScheduler',
                      disabled: false,
                      classes: 'default everyone',
                      config: {
                          notification_schedule: [
                              // SWITCH TO THE DAY PROFILE AT 07:30 EVERY DAY
                              {notification: 'CURRENT_PROFILE', schedule: '30 7 * * *', payload: 'day'},
                              // SWITCH TO THE NIGHT PROFILE AT 23:30 EVERY DAY
                              {notification: 'CURRENT_PROFILE', schedule: '30 18 * * *', payload: 'night'},
                          ]
                      }
                  },
                  
                      {
                          module: "MMM-Profilepicture",
                          position: "fullscreen_below",
                          classes: "day",
                          disabled: false,
                          config: {
                              url: "https://images.unsplash.com/photo-1623150502742-6a849aa94be4?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1980&q=80",
                              opacity: 1,
                              maxWidth: "120%",
                              maxHeight: "120%",
                          }
                      },
                  
                      {
                          module: "MMM-Profilepicture",
                          position: "fullscreen_below",
                          classes: "night",
                          disabled: false,
                          config: {
                              url: "https://images.unsplash.com/photo-1620121692029-d088224ddc74?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1980&q=80",
                              opacity: 1,
                              maxWidth: "140%",
                              maxHeight: "140%",
                          }
                      },
                  ////////////////end profile //////////////////////////
              
              S 2 Replies Last reply Feb 23, 2023, 7:08 PM Reply Quote 0
              • S Away
                sdetweil @3squaremirror
                last edited by Feb 23, 2023, 7:08 PM

                @3squaremirror don’t know, but please don’t double post.

                members with reputation below 2 have every post reviewed.

                this stops the unrelated spam we get every day (6 this morning).

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                1 Reply Last reply Reply Quote 0
                • S Away
                  sdetweil @3squaremirror
                  last edited by Feb 23, 2023, 7:23 PM

                  @3squaremirror yes. profileswitcher says it’s in charge of hiding and showing modules (via lockstring)

                  so. can u force profile switcher to switch to that users profile?

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  3 1 Reply Last reply Feb 23, 2023, 7:30 PM Reply Quote 0
                  • 3 Offline
                    3squaremirror @sdetweil
                    last edited by Feb 23, 2023, 7:30 PM

                    @sdetweil my apology about the double posting, it’s noted. i am not clear on how to force profile switcher to switch. can you elaborate that?

                    S 1 Reply Last reply Feb 23, 2023, 7:59 PM Reply Quote 0
                    • S Away
                      sdetweil @3squaremirror
                      last edited by Feb 23, 2023, 7:59 PM

                      @3squaremirror sorry, no idea. was just a thought. know nothing about the module

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      wishmaster270W 1 Reply Last reply Feb 24, 2023, 7:24 AM Reply Quote 1
                      • 1
                      • 2
                      • 6
                      • 7
                      • 8
                      • 9
                      • 10
                      • 9 / 10
                      • First post
                        Last post
                      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