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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3Agenda questions.

      @Kelemvor

      .CX3A .cw {
        display: none;
      }
      

      80c5b6e0-a79c-48ca-bcbd-dfe89fd56588-image.png

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Blank Screen after New Installment

      @rxldavid
      You need ‘request’ module. It was deprecated from MM, but your quote of the day module is depending on it.

      • the best thing is to request module developers fixing it.
      • you can install ‘request’ module by yourself
        Go to quote of day module directory then;
      npm install request
      
      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-SystemMonitor

      @btastic You are right. Cheer up for your work!
      I wish a new module which can be more flexible and modular with modern techniques, and especially, not dedicated to RPI(recently I never work with it), but I have not enough time and interest to do so…

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda questions.

      @Kelemvor
      1.
      That’s an issue with the Weather module. Sometimes, the weather module sends incorrect units in the broadcasting notification, which is different from the settings used for screen display. I don’t know why it happens, but you may need to ask the MM developers. Anyway, that example you read is created for such cases in my favour. The responsibility for this issue does not lie with this module.

      .CX3A .event .description,
      .CX3A .event .location {
        display: none;
      }
      

      Put into your Custom.css, .
      Why is it not served as a config value? Sorry, it’s my design.
      Presentation and logic should be separated. Maybe showDescription would be useful, but how about these? showEventTime, showDayWeatherIcon, showDayWeatherTempMax, showDayWeatherTempMin, … Maybe those also are useful. But I cannot prepare all the configurable values for all the things. This module still has too many options.
      But just for the presentation, only CSS overriding could solve many things without much code and for various cases.

      3 . The default calendar modules spit out events when each calendar is fetched. The problem is, there is no way to know all the calendars are fetched. So, if your calendars are too many and big, some calendars may need time to finish fetching; that calendar will not be rendered at the first cycle of this module’s refreshing. From next cycle(I hope), it will be shown. So, wait to be refreshed. (default refreshInterval is 30 minutes)

      Alternatively, you can use waitFetch to delay the rendering of the first cycle. By providing a sufficient value, you can ensure that the parsing of calendars is completed within that time. Since the duration of parsing for each calendar is unknown, it may require a considerable amount of time. Perhaps around 30 seconds should be sufficient, although it depends on the specific calendars being parsed.
      Default waitFetch is set as 5000 ms,

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Bluetooth music through Pi

      This might be…
      https://github.com/nicokaiser/rpi-audio-receiver

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3

      @bicolorbore586
      What is that ‘blank’? I cannot guess what it is pointing. Could you show me a bigger picture? and to reproduce your case, send or show me the config and css with real ical urls. (eouia0819@gmail.com)

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3Agenda questions.

      @Kelemvor
      Sorry, that is a known bug which will be fixed on next update. (I think it could be in 24H)
      https://github.com/MMRIZE/MMM-CalendarExt3Agenda/issues/38
      Just wait a day. (It could be fixed by CSS tweak, but you need to restore it again after update…)

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Easy Center Resizing?

      The center position is the weirdest thing of MM. The width of center is decided by this code;

      .region.top.center,
      .region.bottom.center {
        left: 50%;
        transform: translateX(-50%);
      }
      

      This code looks so intuitive, but not so really. It is calculated and applied after rendering, so that makes some issues;

      Anyway, this code would be a help for what you want;

      .region.left {
        width: 50%;
        background-color: rgba(255,0,0, 0.2); /* to check how it shows visibly; remove this line later. */
      }
      
      .region.right {
        width: 50%;
        background-color: rgba(0,255,0, 0.2); /* to check how it shows visibly; remove this line later. */
      }
      
      .region.center {
        display:none;
      }
      

      By the way, current structure of MM’s positioning becomes a bit old and stubborn legacy.(almost 7 or 8 years old) Maybe we need to progress with more modern techs.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: [MMM-MailMessage] Send messages to your MagicMirror via e-mail

      @UncleRoger said in [MMM-MailMessage] Send messages to your MagicMirror via e-mail:

      I did the card thing per the template

      It doesn’t work for some time.

      posted in Utilities
      M
      MMRIZE
    • RE: MMM-CalendarExt3 issue Loading / Showing the calendar on Windows

      @sdetweil
      I was happy to use a new feature toSorted but ppl may have trouble with compatibility issue. I’ll provide fallback codes in the next update.

      posted in Troubleshooting
      M
      MMRIZE
    • 1 / 1