-
-
Notifications
You must be signed in to change notification settings - Fork 123
FAQ
jwalter1-quest edited this page Jan 30, 2019
·
2 revisions
1. How do I get my Arlo Q cameras using the GetDevices() method?
A. Arlo Q cameras are not a camera or a basestation, they are both. As such, Netgear gave them their own type of arloq
or arloqs
.
If you have Arlo Q cameras you will need to use the one of these two types to get them using GetDevices().
This can be done like so: cameras = GetDevices("arloq") or cameras = GetDevices("arloqs")
Objects of type "arloq" or "arloqs" can be passed to functions requiring an object of type camera
or basestation
. If the method requires both a camera
and basestation
, pass the same arloq
object to both parameters.