Skip to content

blinkpy-0.16.0-rc2

Pre-release
Pre-release
Compare
Choose a tag to compare
@fronzbot fronzbot released this 27 May 23:42
· 1044 commits to dev since this release
42e444c

Breaking Change:

The BlinkCamera.set_motion_detect() method is deprecated and being replaced with BlinkCamera.arm. Usage is as follows:

To arm/disarm a BlinkCamera object named camera, just set the arm property to either True or False like so:

camera.arm = True

Calling the same property will return the last updated camera status (perform a refresh at the sync module or blink level to update the status after setting).

All changes:

  • Mark devices as unavailable on None response from server (#272)
  • Add arm property to cameras (#273)
  • Only refresh tokens on unauthorized response from server (#274)
  • Add is_errored property to Auth class (#275)