Git Product home page Git Product logo

kuna's Introduction

Kuna Smart Home Security Custom Integration for Home Assistant

hacs_badge

Home Assistant custom integration supporting Kuna cameras.

Home Assistant 0.96.0 or higher is required.

For each camera in a Kuna account, the following devices will be created:

  • Binary Sensor with device class 'motion', and default name "[Camera Name] Motion".
  • Camera with default name "[Camera Name] Camera".
  • Switch with default name "[Camera Name] Switch", which controls the camera's light bulb.

IoT Class: Cloud Polling

Installation (Home Assistant >= 0.96.0)

This custom integration must be installed for it to be loaded by Home Assistant.

The recommended installation method is via HACS.

Installation via HACS

  1. Add "marthoc/kuna" as a custom repository in HACS under "Settings".
  2. Search for "Kuna Smart Home Security" under "Integrations" in HACS.
  3. Click "Install".
  4. Proceed with Configuration.

Manual Installation

  1. Create a custom_components directory in your Home Assistant configuration directory ('config' share if using hass.io with the Samba add-on or ~/.home-assistant/ for Linux installations).
  2. Create a kuna directory in your custom_components directory.
  3. Grab the latest release from the GitHub "Releases" page.
  4. Copy all files (including the hidden .translations directory) from custom_components/kuna in the release to your config/custom_components/kuna directory.
  5. Restart Home Assistant and proceed with Configuration.

Configuration

To enable the integration, add it from the Configuration - Integrations menu in Home Assistant. Click "+", then "Kuna Smart Home Security".

(Note: previous versions of this component were configured in configuration.yaml; now, all configuration is via the Integration menu.)

The following options can be configured when setting up the integration:

Parameter Optional/Required Default Description
email Required N/A The email address used to log into the Kuna app.
password Required N/A The password used to log into the Kuna app.
recording_interval Optional 7200 The frequency, in seconds, that the component checks for new recordings for each camera.
stream_interval Optional 5 The frequency, in seconds, that the camera's frontend streaming view will refresh its image.
update_interval Optional 15 The frequency, in seconds, that the component polls the Kuna server for updates.

Updating

Update via HACS or by grabbing the latest release and overwriting the contents of your config/custom_components/kuna directory with the contents of custom_components/kuna in the release.

Downloading Recordings

On Home Assistant start, and every recording_interval seconds thereafter, this component checks the Kuna API for new recordings for each camera in the Kuna account, and fires a Home Assistant event for each recording found. These events can be used in an automation to trigger a download of the video with the downloader Home Assistant component. The default recording_interval, 7200 seconds (2 hours) corresponds to the length of time that recordings remain in the Kuna system without a premium subscription.

To automatically download new recordings, you must first set up the downloader Home Assistant component and then set up an automation.

Configuring the Downloader Component

Add the following to your configuration.yaml:

downloader:
  download_dir: downloads

You must ensure that the directory exists before restarting Home Assistant. Given the above example, you would need to ensure that there is a "downloads" subdirectory in your Home Assistant configuration directory, and that the Home Assistant user has write permission to that directory.

Refer to this page for further information on the downloader component: https://www.home-assistant.io/components/downloader/

Automatically Downloading Recordings via Automation

For each recording available in the Kuna API, this component fires a Home Assistant event with the following parameters:

  • event_type: "kuna_event"
  • event_data:
    • category: "recording"
    • serial_number: the serial number of the camera that generated the recording
    • label: a Kuna-assigned string that represents the timestamp of the recording in local time (e.g. "2019_03_18__16_20_06-0400")
    • timestamp: a Kuna-assigned string that represents the timestamp of the recording in UTC (e.g. "2019-03-18T20:20:06.986645Z")
    • duration: the length of the recording in seconds
    • url: the web address at which an mp4 file of the recording is available for download

You can use these parameters to build an automation using the event trigger and templates. To download all recordings, set up the following automation:

- alias: Download Kuna recordings
  trigger:
    platform: event
    event_type: kuna_event
    event_data:
      category: recording
  action:
    service: downloader.download_file
    data_template:
      url: '{{ trigger.event.data.url }}'
      filename: '{{ trigger.event.data.label }}.mp4'

If you want to limit downloads to only a specific camera, add the serial_number parameter under 'event_data' in the trigger.

Caveats

This integration has only been tested with a Maximus Smart Light. Testing and feedback by users with other (and multiple!) Kuna devices would be much appreciated!

This custom integration retrieves data from the same private API used by the Kuna mobile app, as Kuna does not offer a public API. Be gentle to the API and use at your own risk!

TODO

  • Support streaming from Kuna's websockets streaming endpoint in Home Assistant frontend.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.