TRIGGERcmd
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Announcements
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • RussR

      Charge people to run your commands with the new Paywall feature

      • • Russ
      1
      0
      Votes
      1
      Posts
      890
      Views

      No one has replied

    • RussR

      Google Assistant integration

      • • Russ
      8
      0
      Votes
      8
      Posts
      9.0k
      Views

      RussR

      @Viktor-Kanev, I had my friend with an iPhone try it. It worked for him. I suspect maybe you installed the Google Home app but maybe not the Google Assistant app yet?

    • RussR

      Now you can get the result of a remote command in your API response.

      • • Russ
      1
      0
      Votes
      1
      Posts
      358
      Views

      No one has replied

    • RussR

      tcmd Go client: Added support for a quoted string with spaces for the -params parameter.

      • • Russ
      1
      0
      Votes
      1
      Posts
      455
      Views

      No one has replied

    • RussR

      "TRIGGERcmd Smart Home" Google Assistant action

      • • Russ
      1
      0
      Votes
      1
      Posts
      4.0k
      Views

      No one has replied

    • RussR

      Make money promoting TRIGGERcmd

      • • Russ
      1
      0
      Votes
      1
      Posts
      157
      Views

      No one has replied

    • RussR

      Now you can share your computers with other TRIGGERcmd users

      • • Russ
      1
      0
      Votes
      1
      Posts
      423
      Views

      No one has replied

    • RussR

      NodeBB upgrade tonight

      • • Russ
      1
      0
      Votes
      1
      Posts
      130
      Views

      No one has replied

    • RussR

      Google Assistant bug fixed

      • • Russ
      1
      0
      Votes
      1
      Posts
      349
      Views

      No one has replied

    • RussR

      Article on FreeYourDesktop.com about TRIGGERcmd on Linux

      • • Russ
      1
      0
      Votes
      1
      Posts
      313
      Views

      No one has replied

    • RussR

      TRIGGERcmd review on pocketables.com

      • • Russ
      1
      0
      Votes
      1
      Posts
      433
      Views

      No one has replied

    • RussR

      Alexa skill in Spanish now

      • • Russ
      1
      0
      Votes
      1
      Posts
      311
      Views

      No one has replied

    • RussR

      New Alexa feature - you can say "Alexa, run calculator."

      • • Russ
      1
      1
      Votes
      1
      Posts
      476
      Views

      No one has replied

    • RussR

      Alexa bug fixed

      • • Russ
      1
      1
      Votes
      1
      Posts
      401
      Views

      No one has replied

    • RussR

      TRIGGERcmd Smart Home Alexa skill

      • • Russ
      1
      0
      Votes
      1
      Posts
      2.6k
      Views

      No one has replied

    • RussR

      Voice Reply field now allows placeholders for trigger, computer, and params.

      • • Russ
      1
      0
      Votes
      1
      Posts
      863
      Views

      No one has replied

    • RussR

      Run times now display with local time zone

      • • Russ
      1
      0
      Votes
      1
      Posts
      512
      Views

      No one has replied

    • RussR

      New feature for bookmark URL's - now if you use POST you'll get a json response

      • • Russ
      1
      0
      Votes
      1
      Posts
      638
      Views

      No one has replied

    • RussR

      TRIGGERcmd is on a new platform now

      • • Russ
      1
      0
      Votes
      1
      Posts
      788
      Views

      No one has replied

    • S

      Using TriggerCMD with smartthings

      • • Steven Canary
      2
      0
      Votes
      2
      Posts
      1.3k
      Views

      RussR

      @steven-canary, if your commands don't accept parameters, then whether your virtual switch is on or off, it just runs the command when you toggle the virtual switch on or off.

      Or, in the SmartThings device handler code, you can remove the // in front of off(). That would make all of your virtual switches push buttons that automatically toggle themselves back off as soon you toggle them on.

      // handle commands
      def on() {
      log.debug "Executing 'on'"
      sendEvent(name:"switch",value:on)
      parent.on(this)

      // off()

      }