TRIGGERcmd
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. eocode
    3. Posts
    E
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by eocode

    • Trigger CMD for MacBook Pro doesn't work

      I downloaded the Mac Client and show this message:
      Screenshot at Sep 30 19-50-52.png

      Any solution for this problem?

      posted in General Discussion
      E
      eocode
    • RE: Alexa in Spanish dont send multi params

      Great! I tried to run again and it works

      Thanks Russ for the prompt attention!

      posted in General Discussion
      E
      eocode
    • Alexa in Spanish dont send multi params

      i tried to say to Alexa:

      preguntar a ejecuta comando ejecutar buscar en laptop con parĂ¡metros enchiladas verdes
      

      In my program only receipt "verdes", The last param

      Would yo help me to receipt two parameters or more from Alexa?

      My example code:

      import sys, os
      
      if(len(sys.argv) > 1):
          saved_args = sys.argv
          saved_args.pop(0)
          os.system("echo %s >> ~/hola.txt"%("+").join(saved_args))
      else:
          os.system("echo %s >> ~/hola.txt"%"sin parametros")
      

      My configuration:

       {
        "trigger": "Buscar en Google",
        "command": "python ~/Documentos/google.py",
        "offCommand": "python ~/Documentos/google.py",
        "ground": "foreground",
        "voice": "buscar",
        "voiceReply": "Buscando en google",
        "allowParams": "true"
       }
      

      Regards!

      posted in General Discussion
      E
      eocode