Read the statement by Michael Teeuw here.
how to hide all modules?
-
Hello.
I just want to make a digital photo frame that links Google Photos using Raspberry Pi 3b+.
However, MagicMirror/config/config.js annotates default modules except for modules related to Google Photos, so the photos are not called.
It was confirmed that either “complements” or “newsfeed” must be activated to call the picture normally.
Do I have to use “complements” or “newsfeed”?
Additionally, I use “MMM-Google Assistant” and the extension “EXT-Google Photos”, but the Google logo is always displayed when I hide the calendar. Can this also be hidden?
thanks. -
@oky1029 said in how to hide all modules?:
Additionally, I use “MMM-Google Assistant” and the extension “EXT-Google Photos”, but the Google logo is always displayed when I hide the calendar. Can this also be hidden?
If you mean the Google logo that appears in the top left corner of the screen, it is part of the ‘wake-word’ detection module and yes this can be suppressed. In your config.js you need to update the parameters for EXT-Detector. Specifically, you need to include useIcon: false. Here is an example:
{ module: "EXT-Detector", position: "top_left", configDeepMerge: true, config: { debug: false, useIcon: false, detectors: [ { detector: "Snowboy", Model: "jarvis", } ] } },
-
@oky1029 no. you do not need any of the default modules. they are provided if you want to use them.
I don’t understand the rest of the words you used
-
@oky1029 I don’t know about Google assistant logo
I don’t understand ‘photo is called’
what position do you have Google photos configured for?
I usually do fullscreen_below
-
@oky1029 said in how to hide all modules?:
Additionally, I use “MMM-Google Assistant” and the extension “EXT-Google Photos”, but the Google logo is always displayed when I hide the calendar. Can this also be hidden?
If you mean the Google logo that appears in the top left corner of the screen, it is part of the ‘wake-word’ detection module and yes this can be suppressed. In your config.js you need to update the parameters for EXT-Detector. Specifically, you need to include useIcon: false. Here is an example:
{ module: "EXT-Detector", position: "top_left", configDeepMerge: true, config: { debug: false, useIcon: false, detectors: [ { detector: "Snowboy", Model: "jarvis", } ] } },