[NEEDS UPDATING] DSC/Vista Alarm Smartapp and devices based on AlarmServer

Thanks @phiz118

I have been working on an app for the harmony hub/amazon echo so have not done much with the j64 alarm recently. I have been wanting to give linux a spin so will setup a VM when i have a little extra time.

I use a mac so have not really set this up on windows to auto boot when the machine turns on so am also curious how you would do it. I “think” you would just put something in the startup folder but am open to any thought you have.

Yes, it should. I just tested it in stay & away mode from mine and it synced with the app and also SHM. Let me know if this is not working for you.

I can’t find that sentence in my current docs, maybe i fixed that?

The stay vs. away works for me in SHM. There is a little bit of code in the smart app that must be having a problem in your setup. Is that ArmingMode being set wrong for you?

        // Keep smart home monitor (SHM) in synch with the j64 alarm server
        // We sync SHM with partition 1 in the alarm system since it does
        // not support multiple partitions
        if ("${Id}" == "1") {
        	if ("${IsArmed}".toLowerCase() == "false") {
				setShmAlarmMode("off")
			} else {
                log.debug "check ArmingMode ${ArmingMode}"
        		if (ArmingMode == "Away")
            		setShmAlarmMode("away")
        	    
                if (ArmingMode == "Stay")
    	        	setShmAlarmMode("stay")
	        }
        }