MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. MMRIZE
    3. Topics
    M
    • Profile
    • Following 0
    • Followers 3
    • Topics 14
    • Posts 312
    • Best 42
    • Controversial 3
    • Groups 0

    Topics created by MMRIZE

    • M

      MMM-OpenAI
      Productivity • • MMRIZE

      24
      1
      Votes
      24
      Posts
      771
      Views

      R

      @MMRIZE said in MMM-OpenAI:

      @Rags
      Give me the whole configuration and log of backend terminal/frontend dev-console. Without details, I cannot guess anything.

      ??backend terminal/frontend dev console…please guide howto ? thanks

    • M

      MMM-CalendarExt3Timeline
      Utilities • • MMRIZE

      1
      1
      Votes
      1
      Posts
      241
      Views

      M

      MMM-CalendarExt3Timeline

      The successor of CalendarExtTimeline, the Magicmirror module. A sibling module of MMM-CalendarExt3. This module would show the timeline of events.

      1c58e72b-d090-4483-88af-0ecb75a9ae6a-image.png

      https://github.com/MMRIZE/MMM-CalendarExt3Timeline

    • M

      MMM-CalendarExt3Agenda
      Utilities • • MMRIZE

      92
      0
      Votes
      92
      Posts
      7810
      Views

      L

      @MMRIZE Sorry I could not reply sooner.

      The Tesla module is the module below

      MMM-TeslaLogger https://github.com/spitzlbergerj/MMM-TeslaLogger

      I use Teslamate to extract the data from the car.

      I will send you my calendar code to your email.

      I also realized the last event (Saturday, Feb 18, in my screenshot) shows in my calendar but not in the agenda, If I take less days it does not show the last event. I did not see the issue when the last day was the 23rd, probably because the event started on the 22nd.

    • M

      UNSOLVED Getting module's URL from node_helper before socket connected
      Feature Requests • • MMRIZE

      8
      0
      Votes
      8
      Posts
      356
      Views

      M

      Assuming URL with PATH might be an almost general solution, but Sometimes, People install modules in weird ways like using Symlink. (That way could have some benefit, anyway, this is out of issues) In that case, assuming is somehow picky.

      My purpose is to rewrite the Translator class to use in Module and node_helper together with one common class. (So that is the reason why pre-connection is needed.)To access translations in both layers, there could be many ways to achieve. However, if the exact URL could be obtained in the background layer, it would be easier and simpler and with the least dependency. (To work on browser and on nodejs layer together)

      Of course, there could be many alternative approaches. I’m just curious if there could be a better way.

    • M

      UNSOLVED Does 'weather' module broadcast the forecasting?
      Requests • • MMRIZE

      6
      0
      Votes
      6
      Posts
      214
      Views

      S

      @MMRIZE and not calling the same data provider

    • M

      MMM-CalendarExt3
      Utilities • • MMRIZE

      240
      2
      Votes
      240
      Posts
      64817
      Views

      M

      @bicolorbore586
      Sorry, It can’t be done at this moment. In some day, I have a plan to update. I’ll consider your needs at that time.

    • M

      UNSOLVED Best practice for `import` ESM in MM module?
      Development • • MMRIZE

      3
      0
      Votes
      3
      Posts
      216
      Views

      M

      @sdetweil

      Modern browsers can directly import ESM through JS regardless it exists locally or externally. . (Anyway, the above code works really.) Loading ESM via <script type="module">tag will probably be the one way but It will have a global namespace scope. I’m afraid of the risks of collision among MM modules that might be using the same namespace. getScripts() doesn’t support script type. So some codes for injecting proper script tag is needed by the developer himself, To load ESM with MM-module-level scoping, using import() and binding the namespace to the MM module would be possible. however, there will be some pitfalls, import() is an asynchronous function. To prevent referencing unloaded ES modules or to avoid handling of DOM by ES Modules before DOM is created, so some tricks might be needed to confirm everything is ready. (Above my code is that.). So I’m just seeking another or better way if exists.
    • M

      MMM-Scenes
      System • • MMRIZE

      12
      4
      Votes
      12
      Posts
      1333
      Views

      N

      @MMRIZE

      Thank you for your quick reply!

      I really appreciate you taking the time to provide an example for me to work with. Most of this makes sense, despite my lack of programming skills.

      Can I use the predefined PageDown animation within the custom definition? I’d like to avoid having to remake animations you’ve already provided.

      My other question is how do I set temporary identifiers to the modules so the correct animation gets pulled? I don’t think module name or classes alone will work since I need the identifier to change based upon scene selection. Nor do I want to load multiple instances of the modules as I’m already pushing the heat up a bit. Please forgive my ignorance here, I’m sure it’s already well documented, I just don’t know where to begin.

    • M

      [HOW_TO] MagicMirror as Desktop Wallpaper (all platform : updated)
      Tutorials • • MMRIZE

      11
      4
      Votes
      11
      Posts
      1508
      Views

      M

      @OscarVsp

      Non-X-11 based Linux Desktop might not work. This behaviour may severely be dependent on the platform, so in some environment, it might not work. When some OTHER application occupies the “most-bottomed position” later, MM might be expelled to the foreground. I’m not sure.
    • M

      MMM-CalDAV
      Productivity • • MMRIZE

      16
      0
      Votes
      16
      Posts
      1906
      Views

      M

      @gregorywest said in MMM-CalDAV:

      @sdetweil WOW its working!!! Thanks for your patience. Looking good. Something just occured to me. Can I do this with multiple users/calendars? The plan is for 5 calendars to be on the screen, they are all coming from the same SoGo server.

      What you want is;

      5 CalDAV calendars from one account (It has more than 5 calendars) as one iCal Calendar : Just use calendarFilter 5 CalDAV calendaras from one account as 5 iCal Calendars: Use this module 5 times with calendarFilter 5 CalDAV calendars from several accounts as one summarized iCal Calendar : Sorry, impossible with this module. 5 CalDav calendars from several accounts as 5 iCal Calendars : Use method 2.
    • M

      MMM-CustomElementTime
      Utilities • • MMRIZE

      6
      0
      Votes
      6
      Posts
      303
      Views

      M

      @cowboysdude
      Yup, Every developer can implement his own logic to display time-related stuff. And hundreds of MM modules are there, so hundreds of implementations are existing also, just to display “in 15 days”.
      I think it is a kind of waste. So I propose a reusable common HTML tag anyone can use anywhere.

      But the most benefit of this custom tag is, in my thought, Customizability and Locale-awareness separated from the module itself. Logic-neutral HTML tag could give the ability of easier user-customization without the developer’s effort. That is the purpose of this custom tag.

    • M

      Desktop working gadgets
      Show your Mirror • • MMRIZE

      9
      2
      Votes
      9
      Posts
      1321
      Views

      M

      @marcelino The panel has a dedicated control board that has HDMI(for video and sound, yes, that cased-kit includes also stereo speaker set) and micro-USB(for power and touch input)

    • M

      [Proposal] Enhanced Translator
      Feature Requests • • MMRIZE

      10
      3
      Votes
      10
      Posts
      426
      Views

      BKeyport

      @mmrize Gotcha. Cool.

    • M

      MM as Desktop background (for MacOS / Linux)
      Show your Mirror • • MMRIZE

      4
      1
      Votes
      4
      Posts
      1213
      Views

      S

      @mmrize yes, correct.

    • 1 / 1