knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

blinkr

Lifecycle: experimental

The goal of blinkr is to download all video from the amazon blink home security system.

Installation

You can install the released version of blinkr from github with:

remotes::install_github("vincentguyader/blinkr")

Example

library(blinkr)
info <- get_info(email = "your@email.com",password = "password")
set_blink_api_token(token = info$token)
region <- info$region
accountid <-info$accountid

# info2 <- get_networks(token=token)

camera <- get_cameras(region = region)
get_thumbnails(camera = camera)
get_videos(accountid = accountid,region = region)


VincentGuyader/blinkr documentation built on Aug. 9, 2021, 8:49 a.m.