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

    Posts made by Atmosphere

    • RE: Google Home

      I know it's only been a few months.... Any update to this yet? If I can't get my wife to also use triggercmd then I'm gonna have to look for some other way

      posted in General Discussion
      A
      Atmosphere
    • RE: Losing letters in words!

      I went into GA routine, and changed the word "pool" with 2x Ls (pooll)

      "Ask triggercmd to run enable pooll on server"

      now it works again... what gives??

      posted in General Discussion
      A
      Atmosphere
    • RE: Losing letters in words!

      I renamed the trigger to "allow poo" (without the L) and now it works again... weird.This is the trigger:
      {"trigger":"poolon","command":"/home/pool_On","ground":"background","voice":"enable poo","allowParams": "false"},

      posted in General Discussion
      A
      Atmosphere
    • Losing letters in words!

      I have a server running for over a year pretty much without issues on a raspberry pi

      Recently some of my commands sent, seem to lose letters

      When I say to Google home (like I've always done), "switch on the pool" and saved as a routine with wording "Ask triggercmd to run enable pool on server"

      It can't find that command on the server anymore!
      The reply is: "Could not find a command with voice
      word enable poo on server."

      This is gradually happening to all my commands, don't know where to begin, how do I fix this ???

      posted in General Discussion
      A
      Atmosphere
    • RE: Suddenly stopped working on Google home.

      and magically it all works again... i logged a support call with google... they eventually phoned me back to say that they were having issues after an OTA for the google home mini/hub devices.

      they did not know at the time the full extent of the problems - but it had to do with routines and location/geo locked devices. it was not just triggercmd... but all other services were affected in the same way

      posted in General Discussion
      A
      Atmosphere
    • RE: Suddenly stopped working on Google home.

      I think it's something Google have done... All my devices are now on US English... Yet it still harps on about South African English!

      posted in General Discussion
      A
      Atmosphere
    • RE: Suddenly stopped working on Google home.

      When I open the assistant app... Interrupt the "Google listening" and enter my usual voice commands by typing it on the cellphone keyboard. Then GA Works

      ... Why would GA voice not work but GA keyboard does?

      posted in General Discussion
      A
      Atmosphere
    • RE: Suddenly stopped working on Google home.

      I'm really annoyed now... Triggercmd works via app/web, and even when I log in to Google assistant in some weird way online.. But voice commands simply keep saying its set to south Africa English... And its not!

      Has anyone else had this issue?

      posted in General Discussion
      A
      Atmosphere
    • Suddenly stopped working on Google home.

      I left for work everything was working
      I came back 8 hours later and it wouldn't work anymore
      Now when I say, hey Google speak to triggercmd, it replies with: "I'm really sorry about this, but triggercmd is not available on devices set up for South African English"

      I don't know what could have changed.. Definitely not anything on my phone (which is set to USA English)

      Any suggestions?

      posted in General Discussion
      A
      Atmosphere
    • RE: Can't add triggercmd to Google Home

      I'm trying to understand what I'm doing wrong... Everything was working great for about a year... Then I had my phone replaced. Now the Google home routines on my phone no longer triggers triggercmd...

      I see all my old triggers, but when you say them out loud, nothing happens

      When you tap on them, also nothing happens.... But when I download the triggercmd app on my phone it works

      But Google Home device still works (without my phone)

      Any suggestions?

      posted in General Discussion
      A
      Atmosphere
    • Multiple Users - One RPi

      Can I use one Raspberry Pi setup and use multiple users? (Me and my Wife?)

      How do I go about that?

      posted in General Discussion
      A
      Atmosphere
    • Yamaha Amps Raspberry and RXV

      I'm using a raspberry with a Yamaha RX-V671 amp connected on my network

      Link to install on raspberry Pi:
      https://github.com/wuub/rxv

      Example Python Script:

      #!/usr/bin/python
      import rxv

      receivers = [rxv.RXV("http://192.168.1.32:80/YamahaRemoteControl/ctrl", "RX-V671")]
      rx = receivers[0]
      rx.volume = rx.volume + 10
      print rx.volume

      Switch on AMP
      #!/usr/bin/python
      import rxv

      receivers = [rxv.RXV("http://192.168.1.32:80/YamahaRemoteControl/ctrl", "RX-V671")]
      rx = receivers[0]

      rx.on = True
      rx.input = "HDMI3"
      rx.volume = -30

      Amp Off
      #!/usr/bin/python
      import rxv

      receivers = [rxv.RXV("http://192.168.1.32:80/YamahaRemoteControl/ctrl", "RX-V671")]
      rx = receivers[0]

      rx.input = "HDMI2"
      rx.on = False

      posted in Raspberry Pi
      A
      Atmosphere
    • RE: Raspberry Pi setup

      @russ said in Raspberry Pi setup:

      systemctl start triggercmdagent

      Hi, i'm curious - i use python scripts to trigger my gpio pins on my raspberry... it appears that these are "Foreground" tasks... how do i do this in the background (so that when the pi reboots - it loads automatically again)

      Any tips?

      posted in Raspberry Pi
      A
      Atmosphere
    • RE: Google Assistant integration

      I believe these instructions are slightly outdated 😞

      posted in Announcements
      A
      Atmosphere