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.

    MagicMirror project for sister

    Scheduled Pinned Locked Moved Show your Mirror
    32 Posts 11 Posters 17.9k Views 12 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.
    • T Offline
      thoeng
      last edited by

      Hi, I have seen the video and its great work.

      I have similar setup with yours i.e.: AssistantMK2 and Kinobo USB mic (not Akiro but that mini USB one) and it is nowhere as sensitive as yours. I have to speak almost next to the microphone for the hotword to activate AssistantMK2. This reduce the mirror usability considerably.

      Can you please let me know what you have done to increase the sensitivity? so far, I have increased mic to max sensitivity with ALSA mixer but still nowhere near yours.

      Regards,

      1 Reply Last reply Reply Quote 0
      • B Offline
        blaukon
        last edited by

        hi, all I did is to set a higher but not too high sensitivity via alsa mixer or on desktop - right click on audio - audio input - input device settings and adjust the sesitivity:
        alt text

        did you test your mic? arecord test.wav -> aplay test.wav?

        1 Reply Last reply Reply Quote 0
        • T Offline
          thoeng
          last edited by

          Thanks @blaukon

          Yes, i tried to raise the sensitivity via UI and Terminal. Volume from arecord is still very low.

          If I replace the mic, is it direct replacement or any configuration required?

          1 Reply Last reply Reply Quote 0
          • B Offline
            blaukon
            last edited by

            if your recoding is still quiet, even when you’ve raised the sensitivity, it’s mostlikly your microphone :/
            I’ve bought this one https://www.amazon.de/Kinobo-Mini-Akiro-Mikrofon-Windows/dp/B00NSOWWIS
            and also one that looked like 99% the same, was cheaper, but wayyy worse in comparison.

            T 1 Reply Last reply Reply Quote 0
            • A Offline
              amsuvarna27 @blaukon
              last edited by

              @blaukon I’m doing also same project.
              Sir can you please share the Back up file of this project.
              I’m trying from last 3 months but unable to complete.
              Please share with me.

              1 Reply Last reply Reply Quote 0
              • T Offline
                thoeng @blaukon
                last edited by

                @blaukon yep its definetely the mic. I will change and reply back.

                Thanks!

                1 Reply Last reply Reply Quote 0
                • B Offline
                  bachoo786 @blaukon
                  last edited by

                  @blaukon hey so are you saying your mirror glass is bigger than your monitor?

                  I have the issue if the mirror glass is bigger than the monitor then the edge which is not covered by the monitor it needs to be painted black or covered with a black material. This causes reflection issues on the mirror from the front I.e. you can see distorted images on the edge I.e. the image looks stretched…

                  B 1 Reply Last reply Reply Quote 0
                  • B Offline
                    blaukon @bachoo786
                    last edited by

                    @bachoo786
                    hey, as far as I can remember, the glass is slightly bigger than the monitor and the frame is also slightly bigger than the glass, no tape was used, since you only see the monitor in the frame and not the “frame” of the 27" monitor.

                    tried to show it graphically with my old expanded notebookdisplay:
                    alt text

                    B 1 Reply Last reply Reply Quote 0
                    • B Offline
                      Blauenfeldt
                      last edited by Blauenfeldt

                      @blaukon I saw your pictures, and I see the text is easy to see in daylight, but in the video, it’s kinda hard to see in low light. But how is it with your own eyes in brought daylight and with low light/night?

                      B 1 Reply Last reply Reply Quote 0
                      • P Offline
                        phmandl
                        last edited by

                        Where did you pruchase your mirror? Directly form Pilkington? And how much did it cost you?
                        Thanks in advance.

                        1 Reply Last reply Reply Quote 0
                        • B Offline
                          blaukon @Blauenfeldt
                          last edited by blaukon

                          @bachoo786
                          I had no trouble reading the texts neither at night or day - you can easily adjust the brightness via MMM-Remote: alt text

                          @phmandl bought at glas-star.de “Pilkington Mirropane Chrome Spy 4mm (Spy4) 0.3” : 82,00 € + 70,00€ shipping (:/)

                          1 Reply Last reply Reply Quote 0
                          • B Offline
                            bachoo786 @blaukon
                            last edited by

                            @blaukon thanks man

                            1 Reply Last reply Reply Quote 0
                            • H Offline
                              hayman
                              last edited by

                              Nice work,can you share how to change the icon of MK2 instead of Google icon???

                              B 1 Reply Last reply Reply Quote 0
                              • B Offline
                                blaukon @hayman
                                last edited by

                                @hayman thanks! Please keep in mind that I’m not using the newest version of AssistantMK2. I’ve changed the following lines in his code (commented as “NEW”), this way, it will only me shown, if MMM-Hotword detected the hotword:

                                  prepareDom() {
                                    ....
                                    this.subdom.youtube = ytOutput
                                    this.subdom.wrapper = wrapper
                                
                                    wrapper.style.display = "none"			//NEW
                                    return wrapper
                                  }
                                
                                  activate(profile, textQuery=null, sender=null, id=null, sayMode=false) {
                                       ....
                                      if (this.config.onActivate) {
                                	this.subdom.wrapper.style.display = "block"	                   // NEW
                                        setTimeout(()=>{
                                          this.doCommand(this.config.onActivate, "onActivate", "onActivate")
                                        }, this.config.onActivate.timer)
                                      }
                                      ....
                                  }
                                
                                  deactivate(cb=()=>{}) {
                                    this.changeStatus("STANDBY")
                                    this.subdom.wrapper.style.display = "none"			// NEW
                                    this.sendNotification(this.config.notifications.ASSISTANT_DEACTIVATED)
                                    this.quietRequest = false
                                    cb()
                                  }
                                
                                H 1 Reply Last reply Reply Quote 1
                                • H Offline
                                  hayman @blaukon
                                  last edited by

                                  @blaukon thanks I’ll try it out. Great work

                                  1 Reply Last reply Reply Quote 0
                                  • P Offline
                                    phmandl
                                    last edited by

                                    @hayman Could you share your config file for the MMM-remote? Would be helpful and save much time :D

                                    B 1 Reply Last reply Reply Quote 0
                                    • B Offline
                                      blaukon @phmandl
                                      last edited by

                                      @phmandl hey, what do you mean by config-file? I’ve already uploaded the config.js to my google-drive: https://drive.google.com/drive/folders/16hNIqnGdpdmm9KeE-jcLGc0-fB80OpML
                                      or do you mean the modul-files?
                                      I have not changed any mmm-remote settings or module-code.

                                      S 1 Reply Last reply Reply Quote 0
                                      • S Do not disturb
                                        sdetweil @blaukon
                                        last edited by

                                        @blaukon i think he was looking for the part of you config.js for this module

                                        Sam

                                        How to add modules

                                        learning how to use browser developers window for css changes

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

                                          @blaukon
                                          Really great job, thanks for sharing. How did you create the MP3 files or do you have them from a free database?

                                          1 Reply Last reply Reply Quote 0
                                          • B Offline
                                            blaukon
                                            last edited by

                                            @stro voice responses are downloaded from google translate :-)
                                            http://translate.google.com/translate_tts?ie=UTF-8&client=tw-ob&q=hey, how are you&tl=En-us

                                            1 Reply Last reply Reply Quote 1
                                            • B blaukon referenced this topic on

                                            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
                                            • 2
                                            • 2 / 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