marthoc / kuna

Kuna Smart Home Security Custom Integration for Home Assistant
MIT License
28 stars 12 forks source link
home-assistant home-assistant-custom homeassistant homeassistant-components kuna

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:

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:

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