1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
#!/usr/bin/env python3
#
import logging
import os
import sys
import time
# for examples add pyaarlo install path
sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
import pyaarlo
USERNAME = os.environ.get('ARLO_USERNAME', 'test.login@gmail.com')
PASSWORD = os.environ.get('ARLO_PASSWORD', 'test-password')
# set up logging
logging.basicConfig(level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
_LOGGER = logging.getLogger('pyaarlo')
# function to catch all callbacks
def attribute_changed(device, attr, value):
print('attribute_changed', time.strftime("%H:%M:%S"), device.name + ':' + attr + ':' + str(value)[:80])
print('logging in')
arlo = pyaarlo.PyArlo(username=USERNAME, password=PASSWORD,
tfa_type='SMS', tfa_source='console',
save_state=False, dump=False, storage_dir='aarlo')
print('monitoring bases')
for base in arlo.base_stations:
print("base: name={},device_id={},state={}".format(base.name, base.device_id, base.state))
base.add_attr_callback('*', attribute_changed)
print('monitoring cameras')
for camera in arlo.cameras:
print("camera: name={},device_id={},state={}".format(camera.name, camera.device_id, camera.state))
camera.add_attr_callback('*', attribute_changed)
print('monitoring doorbells')
for doorbell in arlo.doorbells:
print("doorbell: name={},device_id={},state={}".format(doorbell.name, doorbell.device_id, doorbell.state))
doorbell.add_attr_callback('*', attribute_changed)
print('monitoring lights')
for light in arlo.lights:
print("light: name={},device_id={},state={}".format(light.name, light.device_id, light.state))
light.add_attr_callback('*', attribute_changed)
# hang around for 10 minutes
time.sleep(1200)
|