Site updated at 2017-04-08 23:38:08 UTC
This commit is contained in:
parent
0b450989d5
commit
b671c3bdf9
536 changed files with 6498 additions and 1728 deletions
|
@ -6,13 +6,13 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Ring - Home Assistant</title>
|
||||
<title>Ring Sensor - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions on how to integrate your Ring.com devices within Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/sensor.ring/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Ring">
|
||||
<meta property="og:title" content="Ring Sensor">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/sensor.ring/">
|
||||
<meta property="og:type" content="article">
|
||||
|
@ -20,7 +20,7 @@
|
|||
<meta property="og:image" content="https://home-assistant.io/images/default-social.png">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:site" content="@home_assistant">
|
||||
<meta name="twitter:title" content="Ring">
|
||||
<meta name="twitter:title" content="Ring Sensor">
|
||||
<meta name="twitter:description" content="Instructions on how to integrate your Ring.com devices within Home Assistant.">
|
||||
<meta name="twitter:image" content="https://home-assistant.io/images/default-social.png">
|
||||
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
|
||||
|
@ -62,21 +62,20 @@
|
|||
<article class="page">
|
||||
<header>
|
||||
<h1 class="title indent">
|
||||
Ring
|
||||
Ring Sensor
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>The <code class="highlighter-rouge">ring</code> sensor allows you to integrate your <a href="https://ring.com/">Ring.com</a> devices in Home Assistant.
|
||||
Currently it supports doorbells and external chimes only.</p>
|
||||
<p>To enable device linked in your <a href="https://ring.com/">Ring.com</a> account, add the following to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
|
||||
<p>To get your <a href="https://ring.com/">Ring.com</a> binary sensors working within Home Assistant, please follow the instructions for the general <a href="/components/ring">Ring component</a>.</p>
|
||||
<p>Once you have enabled the <a href="/components/ring">Ring component</a>, add the following to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
|
||||
<span class="s">sensor</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">ring</span>
|
||||
<span class="s">username</span><span class="pi">:</span> <span class="s">USERNAME</span>
|
||||
<span class="s">password</span><span class="pi">:</span> <span class="s">PASSWORD</span>
|
||||
<span class="s">monitored_conditions</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">battery</span>
|
||||
<span class="pi">-</span> <span class="s">last_activity</span>
|
||||
<span class="pi">-</span> <span class="s">last_ding</span>
|
||||
<span class="pi">-</span> <span class="s">last_motion</span>
|
||||
<span class="pi">-</span> <span class="s">volume</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
@ -88,11 +87,14 @@ Currently it supports doorbells and external chimes only.</p>
|
|||
<li><strong>monitored_conditions</strong> array (<em>Required</em>): Conditions to display in the frontend. The following conditions can be monitored.
|
||||
<ul>
|
||||
<li><strong>battery</strong>: Return the battery level from device</li>
|
||||
<li><strong>last_activity</strong>: Return the timestamp from the last event captured by the Ring doorbell camera</li>
|
||||
<li><strong>last_activity</strong>: Return the timestamp from the last event captured (ding/motion/on_demand) by the Ring doorbell camera</li>
|
||||
<li><strong>last_ding</strong>: Return the timestamp from the last time the Ring doorbell button was pressed</li>
|
||||
<li><strong>last_motion</strong>: Return the timestamp from the last motion event captured by the Ring doorbell camera</li>
|
||||
<li><strong>volume</strong>: Return the volume level from the device. Currently supported by external chimes and doorbells.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<p>Currently it supports doorbells and external chimes only.</p>
|
||||
</article>
|
||||
</div>
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
|
@ -104,6 +106,17 @@ Currently it supports doorbells and external chimes only.</p>
|
|||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.40
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/ring/'>
|
||||
Ring
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.ring/'>
|
||||
Ring Binary Sensor
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Sensor</h1>
|
||||
|
@ -138,6 +151,9 @@ Currently it supports doorbells and external chimes only.</p>
|
|||
<li>
|
||||
<a href='/components/sensor.command_line/'>Command line Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.crimereports/'>Crime Reports</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.dnsip/'>DNS IP</a>
|
||||
</li>
|
||||
|
@ -244,7 +260,7 @@ Currently it supports doorbells and external chimes only.</p>
|
|||
<a href='/components/sensor.random/'>Random Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
Ring
|
||||
Ring Sensor
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.scrape/'>Scrape Sensor</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue