Since the Groovy thing is going away, my existing integration will stop working.
This one (like the previous one) requires you to create an Alarm.com username and password where the two factor is turned off - you can create multiple logins to your account, so just need one that has 2FA off. You used to have to call your dealer to turn it off, but it looks like you can do it yourself on the online portal now.
Invite URL:
Code and Doc:
In some ways this is better than the older integration in that it is represented as a security system in SmartThings, though it also has a switch capability to turn it on (armStay) and off. It also polls to update its status so if you turn the alarm on or off manually on the keypad, it will update status on SmartThings (once every 5 mins)
The downside is due to the fact that unlike the Groovy drivers that could talk to the cloud, Edge drivers cannot talk to alarm.com directly - so this relies on a proxy server (written in python) that needs to run somewhere on the same network as the SmartThings hub. Code for said server and instructions at the GitHub link above.
I had also coded an entire Edge driver that does not need the proxy, till I realized this limitation that was introduced in Edge drivers that did not exist in Groovy drivers. If at some point SmartThings folks change their mind, this will work even easier.
Iâll install soon as I can today! Itâs been 20 months without it, so def excited to walk in my home without having to manually disable my alarm system!
This will be my first edge driver install. I know alot of other devices I have will require updates by 9/30, so glad to have this back!
I donât have a raspberry, but I do have a MacBook that I can leave âalways onââŚ. So to be clear, I first install Python on MacOS & then add the code from the instructions?
After looking at the GitHub, looks like Iâll be needing a YT video that shows how to install these new device drivers compared to how easy it was using the groovy copy/paste publish process.
Installing a regular custom edge driver (one that doesnât require a smartapp and a separate server device) is super easy. That was the idea. You just follow a link the author gives you, choose the driver you want, and then it gets automatically downloaded to your hub. It will be automatically used for any new device you add to your account that has a matching fingerprint. So actually way easier than the old cut/paste/publish/edit process.
So I updated the README with more instructions⌠Maybe that is more helpful.
Mac already has Python, You only need to install Python if you only have a windows machine.
And then copy the directory specified anywhere you want and follow the rest of the directions. It is crazy that this is needed when the old Groovy drivers were able to talk to the cloud directlyâŚ
Made more doc fixes - see if the new doc addresses the ambiguities - I am trying to update the doc to make sure if addresses the issue for others as well. I clarified which proxy directory, and where you need to run the commands, and how to install python and pip if they donât exist.
the ufw command is optional - on a Mac is not necessary. I donât think your wifi has anything to do with this, unless you physically knocked something over
lol very odd⌠soon as I typed the final âCtrl-Câ command, boom my router died haha
I did get the part of adding the edge driver to my Samsung account for hub. So once I figure how to get my Wifi & ST Hub back online, Iâll run a test.
in the meantime,2 questions:
what if letâs say I need to change the user/pass in the proxy⌠do I re-run all those commands or just the supervisord -c supervisord.conf ?
will the proxy work if my Mac goes into âsleep modeâ? or does it have to be completely awake?
Changing the username password needs a separate command I will document. but every time you restart your computer, you need to start from supervisord -c âŚ
Proxy will work when your screen is off, but probably will not work if the entire computer is asleep (there are many levels of sleep)
deleted driver from st app, re-addedâŚworks perfectly now.
rather than leaving my MB always on⌠if I buy one of those tiny raspberrypi that Iâve always heard people talk about⌠I could just plug one in to an outlet and let that run always right? So how would I run these commands on that thing, do they come with a built in OS? does it require a display to be plugged into it at all times?
You would need an SD card to install the OS onto. Raspberry Pi has a tool that can flash the OS to the SD card making it pretty straightforward (assuming your computer has an SD card reader â otherwise grab one of those too). And no, you donât need a monitor attached all the time â running them âheadlessâ is a very common approach.
As per this thread topic, Is there a proper âuninstallâ process or commands needed once I migrate this proxy from my laptop to the raspberry? Or just delete the proxy folder on laptop?
There is no uninstall necessary. Simply reboot the machine to stop it on that machine (there are ways of doing without rebooting, but it may take more steps). You can remove the directory if you wish as well.
I just rewrote the driver yet again, this time to make sure then when they do allow access to alarm.com directly the driver will not need to be rearchitected. Simply removes the need to install the proxy, and the same driver will work as well! So the instructions for the proxy setup are much simpler and the username and password are entered and stored on the SmartThings app instead.
To keep it different from the older driver, I have named it different⌠Please use this one. I will be removing the prior one soon.
Update: rebooting hub fixes this above (hope this helps others)
@schwark what commands would I use if my MacBook restarts? To get the proxy running again (or is that no longer needed in case of pc/Mac/raspberry reboot?
on the command line deploy sometimes, I have found I had to install the driver twice for it to load and be used. I think that is what might have been fixed when you rebooted the hub.