MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MMRIZE
    3. Posts
    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: Calendar / CalendarExt3 Font-Color and Symbol

      @svenpisa
      The changed attributes by customEvents of default calendar module will not be broadcasted, so those changes will not be delivered to CX3. You may request that feature to volunteers who manage MagicMirror default modules.

      Or you can use eventTransformer feature of CX3. For that kind of inconvenience, I prepared that feature in CX3. Read the README.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Notification customize

      @fischi87
      But what you want is a stackable something; it needs another CSS modification. (I thought only single notification case.)

      posted in Custom CSS
      M
      MMRIZE
    • RE: Notification customize

      @fischi87
      It is for type: 'notification'.
      I used this;

      
      this.sendNotification('SHOW_ALERT', {
              type: 'notification',
              title: 'Test Module',
              message: 'I am a test notification',
              timer: 10000,
      })
      
      posted in Custom CSS
      M
      MMRIZE
    • RE: Notification customize

      @fischi87
      So, what you want is this kind? Instead of top position than bottom position?
      3b9d4d5f-4bda-467b-b1f8-bf04ed7131b5-image.png

      You can override most of presentation with css.
      Append this into your custom.css

      /* css/custom.css */
      .ns-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 10px;
      }
      
      .ns-effect-slide-center.ns-show {
        animation: new-anim-slide-elastic-center 1s ease;
      }
      
      @keyframes new-anim-slide-elastic-center {
        0% {
          opacity: 0;
          transform: translateY(100%);
        }
        90% {
          opacity: 1;
          transform: translateY(-20px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
      
      

      You may need hiding animation. guess it by yourself. :)

      posted in Custom CSS
      M
      MMRIZE
    • RE: Friend companion made of memories?

      @3t1s
      That is called custom hotword detection. I have no idea which hotword detector is used in MMM-GoogleAssistant by default currently.(Maybe porcupine? it has that feature - custom hotword). Ask to module owner in his place.

      posted in Requests
      M
      MMRIZE
    • RE: Notification customize

      @fischi87
      I don’t know well about MMM-MQTTbridge, but AFAIK, that module can emit custom notifications like your code snippet. When your codes work, a SHOW_ALERT notification will be delivered to the alert module, so you may be able to see the alert message itself.
      Therefore, What you want is just to take the alert module into the bottom_center area, right?

      posted in Custom CSS
      M
      MMRIZE
    • RE: Notification customize

      @fischi87
      From WHERE are your notification origins? What kind of notification? And How/When is it triggered? Can you describe the use case in more detail?

      posted in Custom CSS
      M
      MMRIZE
    • RE: Friend companion made of memories?

      @3t1s
      Ah, one more issue? problem.

      Unlike Google Assistant, OpenAI doesn’t know the real-time environment or you by default unless those kinds of data are injected. It means it cannot answer How's the weather today? or What is my next appointment?. Well, until now, it is not so useful.
      To teach that kind of data, it needs more codes, and that is what I will update on the next version. (but still plan… :D)

      posted in Requests
      M
      MMRIZE
    • RE: Friend companion made of memories?

      @3t1s
      Well, you can give some “Character” to your AI, Like this;
      ddbcc2e3-2469-4ecb-a73c-5eefced734d7-image.png
      But to be honest, there might be some annoying things;

      • Somewhat old. It was two years ago, and I never touched it for a while, so I don’t know if it still works. (By default, I never touched my modules unless somebody needs/requests updated features)
        • I have a plan to update this module in the future, but I am not sure when exactly I will. :D
      • This module doesn’t have voice-related features. It is designed for collaboration with other modules(for input/output) (e.g. MMM-TelegramBot), So some other voice-related modules(like hotword detector, STT and TTS) are needed to be used as voice assistants. but it’s your job to combine them. (Maybe you need some skills or experiences)
      posted in Requests
      M
      MMRIZE
    • RE: What's overriding my custom css?

      @greedyvegan
      temp1.png
      The CSS window will show something like this;

      e6a284aa-a509-44dc-9610-c8e781686752-image.png

      This list is which CSS rules comprise your targetted element’s look. It is cascading, So the higher is prior to the lower rules. (overriding).
      You can see what override your custom CSS rules.

      posted in Custom CSS
      M
      MMRIZE
    • RE: What's overriding my custom css?

      @greedyvegan
      You can see how element’s css is composed in dev-console of client browser.(Ctrl+shift+i)

      posted in Custom CSS
      M
      MMRIZE
    • RE: Friend companion made of memories?

      @3t1s
      https://developers.google.com/assistant/sdk/reference/rpc/languages
      These languages may be supported. (For this module, you’d better ask Here because the owner of the module will answer only in his place, not in this forum.)

      posted in Requests
      M
      MMRIZE
    • RE: Friend companion made of memories?

      @3t1s
      Maybe this is a most similar thing that you want;
      https://github.com/bugsounet/MMM-GoogleAssistant

      posted in Requests
      M
      MMRIZE
    • RE: Friend companion made of memories?

      @3t1s said in Friend companion made of memories?:

      @MMRIZE Ohhhhh I see…I recall that one project posted on Youtube with the guy speaking to the mirror but that was 7 years ago so I was hoping something new had come up in the meantime.

      Yup, maybe it was me. :D

      posted in Requests
      M
      MMRIZE
    • RE: Friend companion made of memories?

      @3t1s
      There are some AI powered modules; (GoogleAssistant, OpenAI, …)
      But, usually, they would be more like What's the weather today, not How are you doing today.
      And handling voice is not so easy. Only few modules are working at this moment.

      posted in Requests
      M
      MMRIZE
    • RE: MMM-CalendarExt3 rename Popover PERIOD, DESCRIPTION, LOCATION, CALENDAR

      @nhweb
      Done. Update module to 1.8.1
      Then, in your custom.css, append these lines.

      /* css/custom.css */
      #CX3_POPOVER .criteriaItem.period .name::before {
        content: "PERIOD";
      }
      
      #CX3_POPOVER .criteriaItem.location .name::before {
        content: "LOCATION";
      }
      
      #CX3_POPOVER .criteriaItem.description .name::before {
        content: "DESCRIPTION";
      }
      
      #CX3_POPOVER .criteriaItem.calendar .name::before {
        content: "CALENDAR";
      }
      

      Modify as your wish.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: MMM-CalendarExt3 rename Popover PERIOD, DESCRIPTION, LOCATION, CALENDAR

      @nhweb
      Sorry, not yet supported. I’ll provide it on next update.

      posted in Troubleshooting
      M
      MMRIZE
    • RE: Google Assistant Recipe to turn on the lights

      @Alexjons
      I’m not experienced with MMM-TuyaSL, but that module looks like READ-AND-SHOW-ONLY type. I couldn’t find any code for sending some commands or instructions outside. It means you cannot control your home devices with that module.
      If you get some success with GA, it might not be related to MMM-TuyaSL, but the reason would be your HA devices are connected to GA.

      posted in Development
      M
      MMRIZE
    • RE: MMM-CalendarExt3

      @1lolo94
      top_right? You positioned weather module top_center… I need pictures what you mean.

      posted in Utilities
      M
      MMRIZE
    • RE: node_helper.js is not working?

      @vandy2424
      Really weird.
      Of course you are probably running MM as Electron standalone(not server/client). Hmmmm… How about your port forwarding on port 8080 on your home router or firewall? Something makes your ws not working.
      Or… there is another process which is using that port as another ws instance.(but seems not possible… hmmmm) or proxy something maybe…

      But I can’t guess any more sorry.

      posted in Troubleshooting
      M
      MMRIZE
    • 1
    • 2
    • 12
    • 13
    • 14
    • 15
    • 16
    • 47
    • 48
    • 14 / 48