FYI, I solved the problem of the non-support of Arlo Q’s with the following solution:
Problem: I want to turn on/arm the cameras when I leave the home (set in Homey) and turn off/disarm when I’m back.
Steps:
- Install a Raspberry Pi (Lite is enough), integrate it into your WiFi and enable ssh
- Create an own user (e.g. “arlo”) via useradd
- Create an ssh key (ssh-keygen)
- Install my command line tool under this new user: https://github.com/thomaswitt/arlo-command-line (add your credentials in the script and add the .ssh/authorized_users file with the generated id_rsa.pub). Make sure it runs correct by invoking it from the command line (e.g. arlo-cl.py list)
- Install the ssh client app on Homey (SSH Client App for Homey | Homey)
- Configure the ssh client to connect to arlo@pi with the generated id_rsa by adding a ssh client device
- Add ssh client to a leaving home flow with the ssh command argument “arm” and to your returning home flow with the ssh command argument “disarm”
Questions and comments welcome.