From d4456555b388bd7b4028763b666b04fe5541dfd1 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Fri, 12 May 2017 15:46:53 -0400 Subject: [PATCH] Updated README --- README.rst | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index 3d78bb9..f800917 100644 --- a/README.rst +++ b/README.rst @@ -51,16 +51,17 @@ The cameras are of a BlinkCamera class, of which the following parameters can be blink.setup_system() for camera in blink.cameras: - print(camera.name) # Name of the camera - print(camera.id) # Integer id of the camera (assigned by Blink) - print(camera.armed) # Whether the device is armed/disarmed (ie. detecting motion) - print(camera.clip) # Link to last motion clip captured - print(camera.thumbnail) # Link to current camera thumbnail - print(camera.temperature) # Current camera temperature (not super accurate, but might be useful for someone) - print(camera.battery) # Current battery level... I think the value ranges from 0-3, but not quite sure yet. - print(camera.notifications) # Number of unread notifications (ie. motion alerts that haven't been viewed) - print(camera.motion) # Dictionary containing values for keys ['video', 'image', 'time'] - # which correspond to last motion recorded, thumbnail of last motion, and timestamp of last motion + print(camera.name) # Name of the camera + print(camera.id) # Integer id of the camera (assigned by Blink) + print(camera.armed) # Whether the device is armed/disarmed (ie. detecting motion) + print(camera.clip) # Link to last motion clip captured + print(camera.thumbnail) # Link to current camera thumbnail + print(camera.temperature) # Current camera temperature (not super accurate, but might be useful for someone) + print(camera.battery) # Current battery level... I think the value ranges from 0-3, but not quite sure yet. + print(camera.battery_string) # Gives battery level as a string ("OK" or "Low"). Returns "Unknown" if value is... well, unknown + print(camera.notifications) # Number of unread notifications (ie. motion alerts that haven't been viewed) + print(camera.motion) # Dictionary containing values for keys ['video', 'image', 'time'] + # which correspond to last motion recorded, thumbnail of last motion, and timestamp of last motion Class Descriptions