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.

    Family Info Board

    Scheduled Pinned Locked Moved Showcase
    40 Posts 19 Posters 59.1k Views 33 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
      bminer1 @Wedee
      last edited by

      @Wedee Thanks! Works perfect now!

      1 Reply Last reply Reply Quote 0
      • bheplerB Offline
        bhepler Module Developer
        last edited by

        So… how did Christmas go? I hope everyone was amazed!

        W 1 Reply Last reply Reply Quote 0
        • W Offline
          Wedee @bhepler
          last edited by

          @bhepler

          Sorry just got back from a work trip to Europe. Yes the Family loves the board. Already have made several improvements, and have several more ideas we want to try. I had bought an additional Raspberry Pi to play with and successfully set up Alexa, so I think that is the next major add to the info board.

          After telling a few at work about the idea two more guys have set up a similar board at their place, and their families love it as well.

          foxF 1 Reply Last reply Reply Quote 1
          • foxF Offline
            fox @Wedee
            last edited by

            @Wedee said in Family Info Board:

            @bhepler

            Sorry just got back from a work trip to Europe. Yes the Family loves the board. Already have made several improvements, and have several more ideas we want to try. I had bought an additional Raspberry Pi to play with and successfully set up Alexa, so I think that is the next major add to the info board.

            After telling a few at work about the idea two more guys have set up a similar board at their place, and their families love it as well.

            It would be great if you could share your css.
            Your calendar looks great but i am absolutely css noob.

            Issues With MMM-WatchDog known?

            https://forum.magicmirror.builders/post/29827

            Useful for PIR-Sensor: https://forum.magicmirror.builders/post/21299

            1m21 1 Reply Last reply Reply Quote 2
            • 1m21 Offline
              1m2 @fox
              last edited by

              @fox agreed.
              would be cool if he would share that w/the rest of us. LOL

              1 Reply Last reply Reply Quote 1
              • P Online
                poekel
                last edited by

                @fox agreed.

                Weedee could you please share ?

                1 Reply Last reply Reply Quote 0
                • W Offline
                  Wedee
                  last edited by

                  As I have already done for many, just shoot me a PM with your email address and I will send the custom.css and background.

                  P 1 Reply Last reply Reply Quote 1
                  • lucallmonL Offline
                    lucallmon @Wedee
                    last edited by

                    @Wedee can you post your custom.css file?

                    1 Reply Last reply Reply Quote 1
                    • P Offline
                      Padilla187
                      last edited by

                      this is perfect!

                      1 Reply Last reply Reply Quote 0
                      • P Offline
                        Padilla187 @Wedee
                        last edited by

                        @Wedee don’t want to be a wierdo but I fell in love with this I Just shot you a pm

                        1 Reply Last reply Reply Quote 0
                        • O Offline
                          Orca
                          last edited by

                          @Wedee : How did you the trick with several calendars? Could you please share some infos for me?
                          Thx

                          lucallmonL 1 Reply Last reply Reply Quote 0
                          • lucallmonL Offline
                            lucallmon @Orca
                            last edited by

                            @Orca simply clone the module for the calendar and change the settings for login.

                            1 Reply Last reply Reply Quote 0
                            • O Offline
                              Orca
                              last edited by

                              @lucallmon: Can you give me a hint how to clone this module. I’ve copied the folder into …/modules and named it calendar1, but only black screen.
                              Thx

                              1 Reply Last reply Reply Quote 0
                              • W Offline
                                Wedee
                                last edited by

                                No need to duplicate the module, in the config.js just repeat the module config but point to the second calendar settings.

                                1 Reply Last reply Reply Quote 0
                                • yawnsY Offline
                                  yawns Moderator
                                  last edited by

                                  You have two possibilities with the calendar module.

                                  Option 1:

                                  This shows one block and mixes both calendars, sorted by date

                                  modules: [
                                  	{
                                  		module: 'calendar',
                                  		header: 'both calendars'
                                  		position: 'top_left',
                                  		config: {
                                  			calendars: [
                                  				{
                                  				url: 'http://www.whatever.....xx.ics',
                                  				symbol: 'calendar',
                                  				},
                                  				{
                                  				url: 'http://www.justanother....zz.ics',
                                  				symbol: 'calendar',
                                  				}
                                  			],
                                  		}
                                  	}
                                  ]
                                  

                                  Option 2:

                                  This show calendar1 sorted by date and then shows calendar2 sorted by date, but in a seperate block with a seperate header

                                  modules: [
                                  	{
                                  		module: 'calendar',
                                  		header: 'calendar1'
                                  		position: 'top_left',
                                  		config: {
                                  			calendars: [
                                  				{
                                  				url: 'http://www.whatever.....xx.ics',
                                  				symbol: 'calendar',
                                  				}
                                  			],
                                  		}
                                  	},
                                  	{
                                  		module: 'calendar',
                                  		header: 'calendar2'
                                  		position: 'top_left',
                                  		config: {
                                  			calendars: [
                                  				{
                                  				url: 'http://www.justanother....zz.ics',
                                  				symbol: 'calendar',
                                  				}
                                  			],
                                  		}
                                  	}	
                                  ]
                                  
                                  JohanbaJ 1 Reply Last reply Reply Quote 3
                                  • O Offline
                                    Orca
                                    last edited by

                                    THX, that did the trick.

                                    1 Reply Last reply Reply Quote 0
                                    • D Offline
                                      dsegel
                                      last edited by

                                      Another request for you to post your css for calendar_monthly…I’m not having much luck getting it formatted widely enough.

                                      1 Reply Last reply Reply Quote 2
                                      • E Offline
                                        emos
                                        last edited by

                                        Very clean.

                                        Can i ask, how did you manage to create horizontal lines for all the modules?

                                        Thanks

                                        W 1 Reply Last reply Reply Quote 0
                                        • W Offline
                                          Wedee @emos
                                          last edited by

                                          @emos I believe its just a function of my CSS forcing column widths (width: xxxpx;). As the headers of the module are usually set to “float” the forcing of a width makes them span the entire column.

                                          I have not touched the mirror in about a year - it just runs.

                                          E 1 Reply Last reply Reply Quote 0
                                          • E Offline
                                            emos @Wedee
                                            last edited by

                                            @Wedee Thank you for your reply.
                                            Do you mind sharing your main.css and custom.css with us? It looks too damn good ;)

                                            W G 2 Replies Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • 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