3Gee
Executive Member
- Joined
- Jul 16, 2005
- Messages
- 5,586
- Reaction score
- 1,678
I've been using macrodroid on my Android phone for performing different automation tasks. Did the same with olarm. Enable olarm's API access, record the unique token it assigns and then create a scheduled macro in macrodroid to automatically arm and disarm my alarm.
Simple http post request:
with simple JSON body:
{
"actionCmd": "area-arm",
"actionNum": 1
}
to arm and
{
"actionCmd": "area-disarm",
"actionNum": 1
}
to disarm
What's the equivalent iOS app ?