Bugsounet Coding

    • Register
    • Login
    • Search
    1. Home
    2. 2hdlockness
    This Forum is now reserved to registred users!
    • Profile
    • Following 0
    • Followers 2
    • Topics 8
    • Posts 31
    • Best 8
    • Controversial 0
    • Groups 2

    2hdlockness

    @2hdlockness

    Helpers

    12
    Reputation
    76
    Profile views
    31
    Posts
    2
    Followers
    0
    Following
    Joined Last Online
    Location Nice Age 39

    2hdlockness Unfollow Follow
    BetaTester Helpers

    Best posts made by 2hdlockness

    • Magic Mirror Final Version !!!

      Hello everyone
      Here I finally finished the construction of my Magic Mirror.
      Here are some pictures I will post a video soon.





      posted in General Discussion
      2hdlockness
      2hdlockness
    • RE: MMM-IronManGIF

      Hello @doctorfree and thx 😊
      In my config.js :

      {
        module: 'MMM-IronManGIF',
        position: 'middle_center',
        config: {
          style: 1,
          maxWidth: "100%"
        }
      },
      {
        module: "clock",
        position: "middle_center",
        config: {
      	clockBold:false,
      	displayType:"analog",
      	analogSize: "295px",
      	analogFace:"face-006"
        }
      },
      

      and in my custom.css :

      .module.clock {
        margin-bottom: 100px;
      }
      .MMM-IronManGIF {
        margin-bottom:-364px;
      }  
      

      My MagicMirror is set to portrait mode.
      If you use it in landscape mode you may need to play with the values ​​of the margins.

      posted in MagicMirror 5th Party Modules
      2hdlockness
      2hdlockness
    • RE: Programme TV

      @bruno38000 Salut !
      J’ai aussi cherché à avoir le programme tv sur MM mais je me suis résigné à l’afficher sous forme de module. Comme dit @bugsounet il est assez difficile de faire un choix sur quoi afficher, pour quelle periode etc.
      Du coup j’ai un peu contourné la chose en créant une recette qui une fois déclenchée (via mon assistant préféré JARVIS) m’ouvre la page du pogramme télé de molotov qui est assez sympa et complète.
      Pour info je suis en mode portrait donc l’affichage est impeccable. Faut voir ce que ca donne en paysage.
      Voici le code pour la recette :

      var recipe = {
        transcriptionHooks: {
          "programtv": {
            pattern: "programme télé",
            command: "programtv"
          },   
        },
        commands: {
          "programtv": {
            notificationExec: {
              notification: "A2D",
              payload: (params) => {
                return {
                  "from": "GA",
                  "photos": [],
                  "urls": ["https://www.molotov.tv/fr_fr/programme-tv/ce-soir"],
                  "transcription": { transcription: "Programme TV", done: "true" }
                }
              }
            },
            soundExec: {
              chime: "open"
            }
          }      
        }   
      }
      
      exports.recipe = recipe
      
      posted in Idea of new modules ?
      2hdlockness
      2hdlockness
    • RE: Hello Bugsounet ! Back it's great

      It works perfectly with this method. Thank you !

      posted in General Discussion
      2hdlockness
      2hdlockness
    • MMM-IronManGIF

      Nice gifs (8) on the theme of IronMan for your MagicMirror.

      • MMM-IronManGIF

      By adapting the custom.css, you can overwrite this module with the default clock module to get a pretty cool effect.

      posted in MagicMirror 5th Party Modules
      2hdlockness
      2hdlockness
    • MMM-IronManGA Custom Theme for GABackground !

      Hello
      Here you can find a theme inspired by Tony Stark’s favorite assistant.

      Overview

      When GoogleAssistant is listening
      text alternatif

      When GoogleAssistant answers you
      text alternatif

      And many other effect…

      posted in Custom
      2hdlockness
      2hdlockness
    • [GA-RECIPE] MMM-NewsFeed

      Hello following the update of MMM-NewsFeed you can now display the article in full screen with A2D, return to the previous article, go to the next article and finally force the refresh of all news data . Here is a recipe (English, French and Italian) allowing you to perform these actions with GA :

      var recipe = {
        transcriptionHooks: {
          "NEWS_DETAIL_FR": {
            pattern: "affiche l'article",
            command: "NEWS_DETAIL"
          },
          "NEWS_PREVIOUS_FR": {
            pattern: "article précédent",
            command: "NEWS_PREVIOUS"
          },
          "NEWS_NEXT_FR": {
            pattern: "article suivant",
            command: "NEWS_NEXT"
          },
          "NEWS_REFRESH_FR": {
            pattern: "mets à jour les données d'actualité",
            command: "NEWS_REFRESH"
          },    
          "NEWS_DETAIL_IT": {
            pattern: "mostra articolo",
            command: "NEWS_DETAIL"
          },
          "NEWS_PREVIOUS_IT": {
            pattern: "articolo precedente",
            command: "NEWS_PREVIOUS"
          },
          "NEWS_NEXT_IT": {
            pattern: "articolo successivo",
            command: "NEWS_NEXT"
          },
          "NEWS_REFRESH_IT": {
            pattern: "aggiornare i dati delle notizie",
            command: "NEWS_REFRESH"
          },        
          "NEWS_DETAIL_EN": {
            pattern: "show article",
            command: "NEWS_DETAIL"
          },
          "NEWS_PREVIOUS_EN": {
            pattern: "previous article",
            command: "NEWS_PREVIOUS"
          },
          "NEWS_NEXT_EN": {
            pattern: "next article",
            command: "NEWS_NEXT"
          },
          "NEWS_REFRESH_EN": {
            pattern: "update news data",
            command: "NEWS_REFRESH"
          }                                    
        },
        commands: {
          "NEWS_DETAIL": {
            notificationExec: {
              notification: "NEWSFEED_DETAIL"
            },
            soundExec: {
              chime: "open"
            }  
          },
          "NEWS_PREVIOUS": {
            notificationExec: {
              notification: "NEWSFEED_PREVIOUS"
            },
            soundExec: {
              chime: "open"
            }  
          },
          "NEWS_NEXT": {
            notificationExec: {
              notification: "NEWSFEED_NEXT"
            },
            soundExec: {
              chime: "open"
            }
          },
          "NEWS_REFRESH": {
            notificationExec: {
              notification: "NEWSFEED_REFRESH"
            },
            soundExec: {
              chime: "open"
            }
          }
        }
      }
      
      exports.recipe = recipe // Don't remove this line.
      
      
      posted in Recipes
      2hdlockness
      2hdlockness
    • Male voice google assistant french users

      Some of you have certainly noticed that the male voice of the google assistant has been missing for a few days. This is a bug that affects French users. No need to currently try to change the voice in the settings of the assistant, you just have to wait.
      https://support.google.com/websearch/thread/118389512/la-voix-masculine-de-mon-assistant-est-devenue-féminine-sans-intervention-de-ma-part?hl=fr

      posted in Issues
      2hdlockness
      2hdlockness

    Latest posts made by 2hdlockness

    • [to Code] Add features

      Hi Bugs! Would it be possible to upgrade EXT-Pages to have the possibility of displaying a page according to a day of the week and also a period of time. For example, I want page 4 to be displayed on Saturday and Sunday from 4 p.m. to 7 p.m.

      posted in EXT-Pages
      2hdlockness
      2hdlockness
    • RE: Application gateway

      @jeff bon courage Jeff ! On l’a fait hier soir avec Bugs sacré usine à gaz 🤣

      posted in Gateway
      2hdlockness
      2hdlockness
    • RE: Best Microphone to Use

      Hi. Personally I use this microphone bought on Aliexpress with the microphone volume set to 50% it works very well… Before buying a new microphone did you try to increase the volume of your microphone?

      posted in General Discussion
      2hdlockness
      2hdlockness
    • RE: Control Google home devices using MM?

      Hello yes it is possible.
      The only thing that does not work are the routines

      posted in General Discussion
      2hdlockness
      2hdlockness
    • RE: TIMER RESET

      You have to set ecomode to false

      ecoMode: false,

      posted in EXT-Screen
      2hdlockness
      2hdlockness
    • RE: TIMER RESET

      Hello
      Did you try to put in config :
      turnOffDisplay: false,

      In wiki :
      turnOffDisplay : Should the display turn off after timeout?

      posted in EXT-Screen
      2hdlockness
      2hdlockness
    • RE: not able to open gateway app in browser with ip address

      @maheshmahi767670 Maybe you will get an answer by starting your topic with hello…

      posted in Gateway
      2hdlockness
      2hdlockness
    • RE: [Coded for GA v4] Google assistant need permission.

      @dresch360 Hello. did you find some time to test? thanks for your return

      posted in Issues
      2hdlockness
      2hdlockness
    • Magic Mirror Final Version !!!

      Hello everyone
      Here I finally finished the construction of my Magic Mirror.
      Here are some pictures I will post a video soon.





      posted in General Discussion
      2hdlockness
      2hdlockness
    • RE: MMM-IronManGIF

      Hello @doctorfree and thx 😊
      In my config.js :

      {
        module: 'MMM-IronManGIF',
        position: 'middle_center',
        config: {
          style: 1,
          maxWidth: "100%"
        }
      },
      {
        module: "clock",
        position: "middle_center",
        config: {
      	clockBold:false,
      	displayType:"analog",
      	analogSize: "295px",
      	analogFace:"face-006"
        }
      },
      

      and in my custom.css :

      .module.clock {
        margin-bottom: 100px;
      }
      .MMM-IronManGIF {
        margin-bottom:-364px;
      }  
      

      My MagicMirror is set to portrait mode.
      If you use it in landscape mode you may need to play with the values ​​of the margins.

      posted in MagicMirror 5th Party Modules
      2hdlockness
      2hdlockness