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.

    My first MagicMirror

    Scheduled Pinned Locked Moved Show your Mirror
    19 Posts 8 Posters 14.3k Views 8 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.
    • M Offline
      MadsChaves
      last edited by MadsChaves

      0_1571377386396_66AF9856-462E-4275-BF0B-F90E2DE63D28.jpeg

      Tinker with the Calendar to get previous, current and Next month…

      Be nice! Peace!

      S Mykle1M StoffbeuteluweS 3 Replies Last reply Reply Quote 1
      • B Offline
        bdream
        last edited by

        @MadsChaves good job!

        –
        cheers, bdream

        1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @MadsChaves
          last edited by

          @MadsChaves very nice!

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          1 Reply Last reply Reply Quote 0
          • Mykle1M Offline
            Mykle1 Project Sponsor Module Developer @MadsChaves
            last edited by

            @MadsChaves

            Well done!

            Have you viewed the International Space Station based on the module? Just curious. :thumbsup:

            Create a working config
            How to add modules

            M 1 Reply Last reply Reply Quote 0
            • StoffbeuteluweS Offline
              Stoffbeuteluwe Project Sponsor @MadsChaves
              last edited by

              @MadsChaves looks good!

              1 Reply Last reply Reply Quote 0
              • M Offline
                MadsChaves @Mykle1
                last edited by

                @Mykle1 - not yet my first opportunity is this coming Monday at 6am-mish 😨

                Be nice! Peace!

                Mykle1M 1 Reply Last reply Reply Quote 0
                • buzzkcB Offline
                  buzzkc
                  last edited by

                  Nice looking mirror!

                  Darren

                  My Build: https://forum.magicmirror.builders/topic/11153/new-non-mirror

                  1 Reply Last reply Reply Quote 0
                  • Mykle1M Offline
                    Mykle1 Project Sponsor Module Developer @MadsChaves
                    last edited by Mykle1

                    @MadsChaves said in My first MagicMirror:

                    @Mykle1 - not yet my first opportunity is this coming Monday at 6am-mish

                    Be sure to let me know about your experience. Will you be viewing with the naked eye, using binoculars, or telescope?

                    Create a working config
                    How to add modules

                    M 1 Reply Last reply Reply Quote 0
                    • M Offline
                      MadsChaves @Mykle1
                      last edited by

                      @Mykle1 I saw the ISS south of us this morning. Naked eye was good enough 😀 since it reflects the sun, it’s very visible.

                      Be nice! Peace!

                      Mykle1M 1 Reply Last reply Reply Quote 1
                      • Mykle1M Offline
                        Mykle1 Project Sponsor Module Developer @MadsChaves
                        last edited by

                        @MadsChaves said in My first MagicMirror:

                        @Mykle1 I saw the ISS south of us this morning. Naked eye was good enough since it reflects the sun, it’s very visible.

                        And that was using the information from the module?

                        Create a working config
                        How to add modules

                        M 1 Reply Last reply Reply Quote 0
                        • M Offline
                          MadsChaves @Mykle1
                          last edited by

                          @Mykle1 Yes!

                          Be nice! Peace!

                          1 Reply Last reply Reply Quote 1
                          • L Offline
                            Leobo
                            last edited by

                            Hi
                            Great job.
                            Wats ist your configuration on calendar_monthly module?
                            This look very nice.

                            M 1 Reply Last reply Reply Quote 0
                            • M Offline
                              MadsChaves @Leobo
                              last edited by

                              @Leobo I actually tweak the calendar_monthly module and created/renamed the module to show previous and next month calendars - a crude way of doing it but it served my purpose :)

                              Be nice! Peace!

                              S 1 Reply Last reply Reply Quote 0
                              • L Offline
                                Leobo
                                last edited by

                                Thanks @MadsChaves. That’s working. :thumbs_up_light_skin_tone:

                                1 Reply Last reply Reply Quote 0
                                • S Offline
                                  sonicgoose @MadsChaves
                                  last edited by

                                  @MadsChaves How did you tweek the calendar_monthly module? I’ve been racking my brain looking at the js and I’m too much of a newbie to even know where to start!

                                  S 1 Reply Last reply Reply Quote 0
                                  • S Offline
                                    sdetweil @sonicgoose
                                    last edited by

                                    @sonicgoose generally u change the config.js entry, after viewing the README.md file for instructions

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    S 1 Reply Last reply Reply Quote 0
                                    • S Offline
                                      sonicgoose @sdetweil
                                      last edited by

                                      @sdetweil As the actual README.md doesn’t list a configuration option to change in config.js, I was hoping for more specific direction on how to do this. The css has styles for previous and next month, but nowhere can I find where I would activate that option.

                                      S 1 Reply Last reply Reply Quote 0
                                      • S Offline
                                        sdetweil @sonicgoose
                                        last edited by

                                        @sonicgoose css is done by editing the css/custom.css file to add your specific module requiremed css classes and styles

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

                                        S 1 Reply Last reply Reply Quote 0
                                        • S Offline
                                          sonicgoose @sdetweil
                                          last edited by

                                          @sdetweil After doing more reading, I found the modified .js file on GitHub. Replace original ~/MagicMirror/modules/calendar_monthly/calendar_monthly.js with this one (not mine) and edit ~/MagicMirror/config/config.js to load the module as follows:

                                          {
                                               disabled: false,
                                               module: 'calendar_monthly',
                                               position: "top_left",
                                               config: {
                                                      showHeader: true,
                                                      // cssStyle: "",
                                                      monthOffset: 0,
                                               }
                                          },
                                          

                                          That will show the current month. If you want the previous month, then add the module again before the current month and change monthOffset to -1. For the next month, add the module again after the current month and change monthOffset to 1.

                                          If you want current month plus the next two months, then add the module three times with monthOffset set to 0, 1, and 2.

                                          1 Reply 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 / 1
                                          • 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