Navigation

    TRIGGERcmd
    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Tags
    3. raspberry pi
    Log in to post
    • All categories
    • Russ

      Raspberry Pi network install beta
      General Discussion • raspberry pi • • Russ

      1
      0
      Votes
      1
      Posts
      27
      Views

      No one has replied

    • tuicemen

      Run a HomeGenie macro(script, scene)
      Raspberry Pi • homegenie alexa google assistan raspberry pi • • tuicemen

      1
      0
      Votes
      1
      Posts
      41
      Views

      No one has replied

    • tuicemen

      Alexa Google Panic Alarm
      Raspberry Pi • google assistan alexa x10 homegenie raspberry pi • • tuicemen

      5
      0
      Votes
      5
      Posts
      66
      Views

      tuicemen

      Yesterday I did a clean up of my HomeGenie disabling things I thought I no longer needed. After this I tested my Panic Alarm and discovered there were a few things required that I had left out. These may have been set by default with the initial install of HomeGenie.

      Besides the Demo-Toggle Door having to be enabled the Virtual Modules Demo program must also be enabled. As well the Automation.Demo 2 "DoorSensor" need to have the options to "Use as security sensor" and "Also trigger when armed Home" checked. The Automation.Demo 2 "DoorSensor" has to be in the closed condition prior to arming the security widget or you will need to send 2 panic calls
    • tuicemen

      Arm/Disarm Security system via Google/Alexa
      Raspberry Pi • homegenie x10 alexa google assistan raspberry pi • • tuicemen

      3
      0
      Votes
      3
      Posts
      60
      Views

      tuicemen

      Here's the command to arm the HG security system widget to armed home.

      curl http://HGAddress/api/HomeAutomation.HomeGenie.Automation/90/Control.ArmHome
    • tuicemen

      Check DuckDNS connection status/update
      Raspberry Pi • homegenie alexa google assistan raspberry pi • • tuicemen

      1
      1
      Votes
      1
      Posts
      38
      Views

      No one has replied

    • tuicemen

      Say room temperature and humidity
      Raspberry Pi • raspberry pi alexa google assistan • • tuicemen

      9
      0
      Votes
      9
      Posts
      86
      Views

      tuicemen

      If your like me and find the decimal point in the return a bit confusing you can change the line

      os.system('~/.TRIGGERcmdData/sendresult.sh ' + 'Temp={0:0.1f} Humidity={1:0.1f}'.format(t,h))

      to

      os.system('~/.TRIGGERcmdData/sendresult.sh ' + 'Temp={0:0.0f} Humidity={1:0.0f}'.format(t,h))

      if you wish the return to send a Fahrenheit value instead of Celsius you can add the line

      t = (t* 1.8) + 32

      just after the line

      #Print Temperature and Humidity on Shell window
    • Russ

      Windows 11 on Raspberry Pi?
      General Discussion • raspberry pi • • Russ

      5
      0
      Votes
      5
      Posts
      58
      Views

      tuicemen

      @russ I've been researching this some what. As my current PC doesn't support Windows 11 (or so it says).
      There are still some things that need work arounds but hopefully they get worked out for when your 8 gig Pi arrives.

    • tuicemen

      HomeGenie X10 control with single bash script
      Raspberry Pi • raspberry pi google assistan alexa homegenie x10 • • tuicemen

      15
      0
      Votes
      15
      Posts
      132
      Views

      tuicemen

      @russ thanks, I removed the deviceType from my json file and had Alexa rediscover and they do still dim. I edited my previous post.
      It should be noted that using dim turns the device to that value. So if you turn a light on (100%) then say dim 20% it doesn't set the light level to 80 but instead sets the light level to 20.
      At least that's the way it works for HG.

    • Russ

      Control RGB LED bike lights with Raspberry Pi
      Raspberry Pi • raspberry pi • • Russ

      1
      0
      Votes
      1
      Posts
      69
      Views

      No one has replied

    • W

      433Mhz remote gate opener with Raspberry Pi
      Raspberry Pi • 433mhz raspberry pi • • Wholepunch

      8
      1
      Votes
      8
      Posts
      350
      Views

      W

      @russ Interesting idea... make auto billing possible for registered customers etc...

    • Russ

      Raspberry Pi relay wiring photos
      Raspberry Pi • raspberry pi • • Russ

      1
      0
      Votes
      1
      Posts
      218
      Views

      No one has replied

    • Russ

      Windows script to prep SD card for Raspberry Pi with TRIGGERcmd agent
      Instructions • raspberry pi • • Russ

      4
      0
      Votes
      4
      Posts
      831
      Views

      Dean McNaughton

      @Russ
      I think the batch file wrote info to the card, but can't remember for sure. I'm hesitant to repeat the experiment right now because the SSD card is configured and running Raspberry Pi OS.

      As far as I'm concerned, this is not an active issue for me anymore because I installed it a different way; I should have followed up to let you know. Thank you for looking into it and responding though!

    • B

      Rpi VLC
      General Discussion • raspberry pi vlc google home hub chromecast • • Belleye

      5
      0
      Votes
      5
      Posts
      1530
      Views

      B

      @russ Thanks I'm away for a week or more, I'll have a crack when I get back.

    • Russ

      Turn on a computer
      Raspberry Pi • raspberry pi • • Russ

      16
      0
      Votes
      16
      Posts
      9991
      Views

      Russ

      @Wesley-Correa, if you share your computer with another TRIGGERcmd user, all of the commands on that computer are shared.

      Are you seeing the commands you created in commands.json on the website?

    • Russ

      Raspberry Pi setup
      Raspberry Pi • raspberry pi • • Russ

      31
      0
      Votes
      31
      Posts
      11661
      Views

      Russ

      @George-Hatzisymeon, sorry I never responded to this. I just noticed it because someone upvoted it.

      I just verified that the offCommand commands.json value is supported in the current version of the Raspberry Pi agent. If you were using that version and it didn't work, then maybe you were missing this part:

      "allowParams":"true"

      Here's an example entry I just tested. It turns my led strip off if the parameter was off, and if the parameter was on, it turns the strip on and makes the leds green.

      { "trigger":"Green", "command":"\/root\/killrun.sh leds.py green", "offCommand": "\/root\/killrun.sh leds.py off", "ground":"background", "voice":"green", "allowParams":"true" },