[OBSOLETE] Blue Iris Fusion - Integrate SmartThings and Blue Iris!

You can hook into SHM and get status changes.
I’m doing it in BigTalker.

subscribe(location, "alarmSystemStatus", onSHMEvent)
//BEGIN HANDLE SHM
def onSHMEvent(evt){
   if (evt.value == "away") {Do stuff}
   if (evt.value == "stay") {Do stuff}
   if (evt.value == "off") {Do stuff}
}

EDIT: I went back and read the post from who you replied to @automaton82. It seems they are wanting BlueIris motion to trigger an SHM alarm. One way to do this might be install a simulated motion sensor (from the IDE), then add that motion to your desired SHM alarm group (away, stay), then a BlueIris SmartApp would need to allow selection of the simulated motion to trigger on actual camera motion and finally call thesimulatedmotion.active() function which would cause SHM to activate an alarm condition. Sometime later the SmartApp would need to call thesimulatedmotion.inactive() to reset the state of the simulated motion back to inactive. (pseudo code, I’ve not tried any of this)

1 Like