• 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-Moon shows only "No Image!"

Scheduled Pinned Locked Moved Solved Troubleshooting
12 Posts 3 Posters 2.2k Views 3 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.
  • U Offline
    UncleRoger
    last edited by Oct 21, 2023, 10:43 PM

    I installed the MMM-Moon module and put in the default config from the git page and all I see is “No Image!”. Has anyone else gotten this to work?

    Here’s my config:

                        {
                          module: "MMM-Moon",
                          position: "top_left",
                          config: {
    //                      Coordinates for my place:
                            lat: 37.nnnnn,
                            lon: -122.nnnnn,
                            timezone: "America/Los_Angeles"
                          }
                        },
    
    U 1 Reply Last reply Oct 22, 2023, 5:09 PM Reply Quote 0
    • U Offline
      UncleRoger @sdetweil
      last edited by Oct 22, 2023, 11:30 PM

      @sdetweil Thanks to a comment on another thread, I’ve found the answer – I needed to restart the RPi. Once I did that, both the MoonPhase and MMM-Earth modules started working.

      S 1 Reply Last reply Oct 23, 2023, 4:06 AM Reply Quote 0
      • U Offline
        UncleRoger @UncleRoger
        last edited by Oct 22, 2023, 5:09 PM

        I tried using MMM-MoonPhase and didn’t have any luck there either. Here is my config for that:

                        {
                                module: "MMM-MoonPhase",
                                position: "top_left",
                                config: {
                                        updateInterval: 43200000,
                                        hemisphere: "N",
                                        resolution: "detailed",
                                        basicColor: "white",
                                        title: true,
                                        phase: true,
                                        size: 200,
                                        moonAlign: "center",
                                        textAlign: "center",
                                        alpha: 0.7,
                                        riseAndSet: {
                                            display: false,
                                            lat: 37.xxxxx,
                                            lon: -122.xxxxx,
                                            gmtOffset: -8.0
                                        }
                                }
                        },
        

        Here’s what I’m seeing:
        84344962-5bf5-4b2c-852a-366ef454ae69-387451827_1708599592982589_729151378905253751_n.jpg

        I’m starting to think that maybe it’s something more basic with my setup as MMM-SystemStats doesn’t work either (just shows “Loading…” for each item).

        The moon phase isn’t, of course, critical, but it would be nice to get working.

        S 1 Reply Last reply Oct 22, 2023, 8:08 PM Reply Quote 0
        • S Away
          sdetweil @UncleRoger
          last edited by Oct 22, 2023, 8:08 PM

          @UncleRoger maybe the api changed (again)

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          U 1 Reply Last reply Oct 22, 2023, 11:30 PM Reply Quote 0
          • U Offline
            UncleRoger @sdetweil
            last edited by Oct 22, 2023, 11:30 PM

            @sdetweil Thanks to a comment on another thread, I’ve found the answer – I needed to restart the RPi. Once I did that, both the MoonPhase and MMM-Earth modules started working.

            S 1 Reply Last reply Oct 23, 2023, 4:06 AM Reply Quote 0
            • S Away
              sdetweil @UncleRoger
              last edited by Oct 23, 2023, 4:06 AM

              @UncleRoger cool. never had a module where I needed to reboot to make it work

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              F 1 Reply Last reply Jan 12, 2024, 10:42 PM Reply Quote 0
              • F Offline
                Fillan90 @sdetweil
                last edited by Jan 12, 2024, 10:42 PM

                @sdetweil I got the same issue (No image message), a restart didn’t resolve it.

                S 1 Reply Last reply Jan 12, 2024, 10:44 PM Reply Quote 0
                • S Away
                  sdetweil @Fillan90
                  last edited by Jan 12, 2024, 10:44 PM

                  @Fillan90 show the module config please, use code block markers

                  paste text
                  select text
                  hit the </> button

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  F 1 Reply Last reply Jan 12, 2024, 10:52 PM Reply Quote 0
                  • F Offline
                    Fillan90 @sdetweil
                    last edited by Jan 12, 2024, 10:52 PM

                    @sdetweil
                    config.js:

                    module: "MMM-Moon",
                            position: "top_left",
                            config: {
                              width: "400px",      //    as per requirement
                              height: "400px",       //    as per requirement
                              lat: 59.325,
                              lon: 18.050,
                              timezone: "Europe/Stockholm"
                    

                    MMM-Moon.js:

                    start: function () {},
                      getDom: function () {
                        const outerDiv = document.createElement("div");
                        if (this.content) {
                          const img = document.createElement("img");
                          img.src = this.content;
                          img.style.width = this.config.width || "100%"; // add this line to set the width of the image
                          img.style.height = this.config.height || "auto"; // add this line to set the height of the image
                          outerDiv.appendChild(img);
                        } else {
                          outerDiv.innerText = "No image!";
                        }
                        return outerDiv;
                    
                    S 1 Reply Last reply Jan 12, 2024, 11:09 PM Reply Quote 0
                    • S Away
                      sdetweil @Fillan90
                      last edited by Jan 12, 2024, 11:09 PM

                      @Fillan90 which MMM-Moon

                      (git remote -v)

                      NEVER edit the source…

                      all config goes in config/config.js
                      all css goes in css/custom.css

                      there is not enough code there to do the job

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      F 1 Reply Last reply Jan 12, 2024, 11:38 PM Reply Quote 0
                      • F Offline
                        Fillan90 @sdetweil
                        last edited by Jan 12, 2024, 11:38 PM

                        @sdetweil
                        [https://github.com/EnderFlop/MMM-Moon](link url)

                        S 1 Reply Last reply Jan 13, 2024, 12:05 AM Reply Quote 0
                        • 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