Bugsounet Coding

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    1. Home
    2. bmachina
    • Profile
    • Following 1
    • Followers 0
    • Topics 7
    • Posts 42
    • Best 6
    • Controversial 0
    • Groups 3

    bmachina

    @bmachina

    Translators BetaTester

    7
    Reputation
    11
    Profile views
    42
    Posts
    0
    Followers
    1
    Following
    Joined Last Online

    bmachina Unfollow Follow
    Translators BetaTester Donators

    Best posts made by bmachina

    • RE: Screen Manager Recipe

      Here’s the Recipe code for other people use if they need to use CEC:

      /** Screen Manager /
      /
      Vocal commands script /
      /
      set partern in your language /
      /
      @bugsounet **/

      var recipe = {
      transcriptionHooks: {
      “SCREEN_TURNOFF”: {
      pattern: “Turn your screen OFF in Your Own Language”,
      command: “SCREEN_TURNOFF”
      },
      “SCREEN_TURNON”: {
      pattern: “Turn your screen ON in Your Own Language”,
      command: “SCREEN_TURNON”
      }
      },

      commands: {
      “SCREEN_TURNOFF”: {
      soundExec: {
      chime: “close”,
      },
      shellExec: {
      exec: “echo ‘standby 0’ | cec-client -s”
      }
      },
      “SCREEN_TURNON”: {
      soundExec: {
      chime: “open”,
      },
      shellExec: {
      exec: “echo ‘on 0’ | cec-client -s”
      }
      }
      }
      }

      exports.recipe = recipe // Don’t remove this line.

      posted in Recipes
      bmachina
      bmachina
    • RE: GooglePhotos not showing

      @bugsounet

      @bugsounet said in GooglePhotos not showing:

      @bmachina : do you read my last post ???

      Sorry, my bad I didn’t get it the first time, you’re basically saying that you will find a way to enable Personal Results, am I correct? Thanks

      posted in Issues
      bmachina
      bmachina
    • RE: Bugsounet Day !

      A little bit late but happy birthday @bugsounet 🎂🎂🎂

      posted in General Discussion
      bmachina
      bmachina
    • RE: How can I remove Librespot from GA Components folder?

      @bugsounet Thanks, great! I was asking because I couldn’t get it to work from there and when I switch to GA Light I installed Raspotify outside MM and its working, I’m just trying to maximize resources 👍
      Thanks also for taking time tweaking GA Light for RP3 users, I still see a lot of them around 🙂

      posted in Issues
      bmachina
      bmachina
    • RE: [Coded for GA v4] Google assistant need permission.

      @dresch360 that will be the cherry in the top of the cake 😁

      posted in Issues
      bmachina
      bmachina
    • RE: [Coded for GA v4] Google assistant need permission.

      @bugsounet will be also be available for the Lite version?

      posted in Issues
      bmachina
      bmachina

    Latest posts made by bmachina

    • RE: Bugsounet Day !

      A little bit late but happy birthday @bugsounet 🎂🎂🎂

      posted in General Discussion
      bmachina
      bmachina
    • RE: [Coded for GA v4] Google assistant need permission.

      @bugsounet said in [Coded for GA v4] Google assistant need permission.:

      e776fc04-1602-48e1-b7f4-f64b5303073a-image.png

      🆒 👷 😁

      Game changer!
      And honestly, being a long term Google Home user like I am, I’m starting to get the feeling you’re going to unlock more features on Google side not just the “personal results” related ones with V4.Nice one 👍

      posted in Issues
      bmachina
      bmachina
    • RE: [Coded for GA v4] Google assistant need permission.

      @bugsounet awesome!! You’re the man!!

      posted in Issues
      bmachina
      bmachina
    • RE: [Coded for GA v4] Google assistant need permission.

      @bugsounet will be also be available for the Lite version?

      posted in Issues
      bmachina
      bmachina
    • RE: [Single Topic] Token for YouTube plugin

      Hey there! Merry Christmas all!
      There’s a Police officer in my mirror I think I need a token please 😂

      Edit: Token created and sended in private

      posted in EXT-YouTube
      bmachina
      bmachina
    • RE: Will this Recipe work in RP3?

      @bugsounet said in Will this Recipe work in RP3?:

      The radio player is inside Extented Display, it’s decoded for Light version

      reboot, shudown, screen recipe are ​some shell usual command (reboot, shutdown, …)

      There is no default player and if exist you have to launch with a streaming and you have to stop it (complex to launch a process and stop it for a begginer :/)
      So a dedicated module is needed for Radio and make recipe in accord with it
      I see This One but not tested…

      I see, got it! I will take a look at that one then. Thank you so much again.

      posted in Recipes
      bmachina
      bmachina
    • RE: Will this Recipe work in RP3?

      @bugsounet I see, thanks for the reply.

      I just was wondering why can I use other recipes in RP3 like screen manager and the reboot/shut down, witch works very well btw, and not this radio one specifically. Is it because to heavy for RP3 or needs a player?

      posted in Recipes
      bmachina
      bmachina
    • Will this Recipe work in RP3?

      Will this Radio Recipe work in RP3? Or can I do something to make it work with GA Light?

      var recipe = {
      transcriptionHooks: {
      “tsf”: {
      pattern: “abre tsf”,
      command: “tsf”
      },
      “rfm”: {
      pattern: “abre rfm”,
      command: “rfm”
      },
      “smooth fm”: {
      pattern: “abre smooth fm”,
      command: “smooth fm”
      },
      “rádio comercial”: {
      pattern: “abre rádio comercial”,
      command: “rádio comercial”
      },
      “cidade fm”: {
      pattern: “abre cidade fm”,
      command: “cidade fm”
      },
      “antena 1”: {
      pattern: “abre antena 1”,
      command: “antena 1”
      },
      “antena 3”: {
      pattern: “abre antena 3”,
      command: “antena 3”
      }
      },
      commands: {
      “tsf”: {
      functionExec: {
      exec: () => {
      this.radioCommand({
      img: [‘modules/MMM-GoogleAssistant/resources/LogosRadios/tsf.svg’],
      link: “https://tsfdirecto.tsf.pt/tsfdirecto.mp3”
      })
      }
      },
      soundExec: {
      chime: “open”
      }
      },
      “rfm”: {
      functionExec: {
      exec: () => {
      this.radioCommand({
      img: [‘modules/MMM-GoogleAssistant/resources/LogosRadios/rfm.png’],
      link: “https://playerservices.streamtheworld.com/api/livestream-redirect/RFM.mp3”
      })
      }
      },
      soundExec: {
      chime: “open”
      }
      },
      “m80”: {
      functionExec: {
      exec: () => {
      this.radioCommand({
      img: [‘modules/MMM-GoogleAssistant/resources/LogosRadios/m80.png’],
      link: “https://mcrscast.mcr.iol.pt/m80?.mp3”
      })
      }
      },
      soundExec: {
      chime: “open”
      }
      },
      “smooth fm”: {
      functionExec: {
      exec: () => {
      this.radioCommand({
      img: [‘modules/MMM-GoogleAssistant/resources/LogosRadios/smoothfm.png’],
      link: “http://mcrscast.mcr.iol.pt/smoothfm”
      })
      }
      },
      soundExec: {
      chime: “open”
      }
      },
      “rádio comercial”: {
      functionExec: {
      exec: () => {
      this.radioCommand({
      img: [‘modules/MMM-GoogleAssistant/resources/LogosRadios/Comercial.png’],
      link: “http://mcrscast1.mcr.iol.pt/comercial.mp3”
      })
      }
      },
      soundExec: {
      chime: “open”
      }
      },
      “antena 1”: {
      functionExec: {
      exec: () => {
      this.radioCommand({
      img: [‘modules/MMM-GoogleAssistant/resources/LogosRadios/Antena1.png’],
      link: “http://radiocast.rtp.pt/antena180a.mp3”
      })
      }
      },
      soundExec: {
      chime: “open”
      }
      },
      “antena 3”: {
      functionExec: {
      exec: () => {
      this.radioCommand({
      img: [‘modules/MMM-GoogleAssistant/resources/LogosRadios/Antena3.png’],
      link: “http://radiocast.rtp.pt/antena380a.mp3”
      })
      }
      },
      soundExec: {
      chime: “open”
      }
      },
      “cidade fm”: {
      functionExec: {
      exec: () => {
      this.radioCommand({
      img: [‘modules/MMM-GoogleAssistant/resources/LogosRadios/cidadefm.png’],
      link: “http://mcrscast.mcr.iol.pt/cidadefm”
      })
      }
      },
      soundExec: {
      chime: “open”
      }
      },

      /** rien a voir avec la radio ... c'est la chaine TV de france info ;) **/
      "info": {
        functionExec: {
          exec: () => {
            this.displayEXTResponse.start({
              "photos": [],
              "urls": [ "https://m.youtube.com/watch?v=wwNZKfBLAsc" ],
              "transcription": { transcription: 'France Info TV', done: true },
            })
          }
        },
        soundExec: {
          chime: "open"
        }
      }
      

      }
      }
      exports.recipe = recipe

      posted in Recipes
      bmachina
      bmachina
    • RE: Screen Manager Recipe

      @chris x2

      posted in Recipes
      bmachina
      bmachina
    • RE: Screen Manager Recipe

      Awesome thanks for the update @Chris! These ones are also working for me but I do notice sometimes the older ones were returning ShellExec error but only sometimes. I will keep an eye on this ones now.

      posted in Recipes
      bmachina
      bmachina