Site updated at 2017-03-11 22:26:12 UTC
This commit is contained in:
parent
82f1582517
commit
1d63e35340
610 changed files with 11431 additions and 1889 deletions
349
components/android_ip_webcam/index.html
Normal file
349
components/android_ip_webcam/index.html
Normal file
|
@ -0,0 +1,349 @@
|
|||
<!doctype html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Android IP Webcam - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Connect Android devices as IP webcam to Home Assistant">
|
||||
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/android_ip_webcam/">
|
||||
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Android IP Webcam">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/android_ip_webcam/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Connect Android devices as IP webcam to Home Assistant">
|
||||
<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="Android IP Webcam">
|
||||
<meta name="twitter:description" content="Connect Android devices as IP webcam to 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">
|
||||
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
|
||||
<link rel='shortcut icon' href='/images/favicon.ico' />
|
||||
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
|
||||
</head>
|
||||
|
||||
<body >
|
||||
|
||||
<header>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
|
||||
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
|
||||
<a href="/" class="site-title">
|
||||
<img width='40' src='/demo/favicon-192x192.png'>
|
||||
<span>Home Assistant</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
|
||||
<nav>
|
||||
<input type="checkbox" id="toggle">
|
||||
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
|
||||
<ul class="menu pull-right">
|
||||
|
||||
<li><a href="/getting-started/">Getting started</a></li>
|
||||
<li><a href="/components/">Components</a></li>
|
||||
<li><a href="/docs/">Docs</a></li>
|
||||
<li><a href="/cookbook/">Examples</a></li>
|
||||
<li><a href="/developers/">Developers</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li><a href="/help/">Need help?</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid grid-center">
|
||||
|
||||
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
|
||||
|
||||
|
||||
<article class="page">
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<h1 class="title indent">
|
||||
Android IP Webcam
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
|
||||
|
||||
<p>The Android IP webcam component turns your Android phone into a network camera with multiple viewing options.</p>
|
||||
|
||||
<p>It’s setup as a mjpeg camera and all settings as switches inside of Home Assistant. You can also expose the sensors. If you have multiple phones, you can use all options inside a list.</p>
|
||||
|
||||
<p>To set it up, download <a href="https://play.google.com/store/apps/details?id=com.pas.webcam">the IP Webcam app</a> and add the following information 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">android_ip_webcam</span><span class="pi">:</span>
|
||||
<span class="c1"># This should be the ip of your phone</span>
|
||||
<span class="pi">-</span> <span class="s">host</span><span class="pi">:</span> <span class="s">192.168.1.10</span>
|
||||
<span class="s">name</span><span class="pi">:</span> <span class="s">Entrance</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
<p>Configuration variables:</p>
|
||||
|
||||
<ul>
|
||||
<li><strong>host</strong> (<em>Required</em>): The ip address where your phone have on network.</li>
|
||||
<li><strong>port</strong> (<em>Optional</em>): Default is set 8080. The port where is ip webcam listens.</li>
|
||||
<li><strong>name</strong> (<em>Optional</em>): This parameter allows you to override the name of your phone.</li>
|
||||
<li><strong>username</strong> (<em>Optional</em>): The username for accessing your phone.</li>
|
||||
<li><strong>password</strong> (<em>Optional</em>): The password for accessing your phone.</li>
|
||||
<li><strong>scan_interval</strong> (<em>Optional</em>): Default is 10 seconds. Defines the update interval of the phone.</li>
|
||||
<li><strong>auto_discovery</strong> (<em>Optional</em>): Default is True. Auto detect which sensors and settings are available for setup.</li>
|
||||
<li><strong>sensors</strong> array (<em>Optional</em>): Conditions to display sensor in the frontend. See list of supported sensors.</li>
|
||||
<li><strong>switches</strong> array (<em>Optional</em>): Conditions to display settings in the frontend. See list of supported settings.</li>
|
||||
<li><strong>motion_sensor</strong> (<em>Optional</em>): Activate motion sensor if auto_discovery is disabled.</li>
|
||||
</ul>
|
||||
|
||||
<h3><a class="title-link" name="supported-features" href="#supported-features"></a> Supported features</h3>
|
||||
|
||||
<p>Sensors:</p>
|
||||
|
||||
<ul>
|
||||
<li>audio_connections</li>
|
||||
<li>battery_level</li>
|
||||
<li>battery_temp</li>
|
||||
<li>battery_voltage</li>
|
||||
<li>light</li>
|
||||
<li>motion</li>
|
||||
<li>pressure</li>
|
||||
</ul>
|
||||
|
||||
<p>Settings:</p>
|
||||
|
||||
<ul>
|
||||
<li>exposure_lock</li>
|
||||
<li>ffc</li>
|
||||
<li>focus</li>
|
||||
<li>gps_active</li>
|
||||
<li>night_vision</li>
|
||||
<li>overlay</li>
|
||||
<li>torch</li>
|
||||
<li>whitebalance_lock</li>
|
||||
<li>video_recording</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
<div class="grid">
|
||||
|
||||
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_components/android_ip_webcam.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/android_ip_webcam.png' />
|
||||
</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/binary_sensor.android_ip_webcam/'>
|
||||
Android IP Webcam Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.android_ip_webcam/'>
|
||||
Android IP Webcam Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/switch.android_ip_webcam/'>
|
||||
Android IP Webcam Settings
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Hub</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
Android IP Webcam
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/digital_ocean/'>Digital Ocean</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/emulated_hue/'>Emulated Hue Bridge</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/enocean/'>EnOcean</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/ffmpeg/'>FFmpeg</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/homematic/'>Homematic</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/isy994/'>ISY994 Controller</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/insteon_local/'>Insteon (local)</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/insteon_hub/'>Insteon Hub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/insteon_plm/'>Insteon PLM</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/joaoapps_join/'>Joaoapps Join</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/litejet/'>LiteJet</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/lutron/'>Lutron</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/mqtt/'>MQTT</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/microsoft_face/'>Microsoft Face</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/mochad/'>Mochad</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/modbus/'>Modbus</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/mysensors/'>MySensors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/neato/'>Neato Robotics</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/nest/'>Nest</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/netatmo/'>Netatmo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/nuimo_controller/'>Nuimo controller</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/octoprint/'>OctoPrint</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/pilight/'>Pilight</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/qwikswitch/'>QwikSwitch QSUSB Hub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/rfxtrx/'>RFXtrx</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/rflink/'>Rflink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/scsgate/'>SCSGate</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sleepiq/'>SleepIQ</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/tellstick/'>TellStick</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/tellduslive/'>Telldus Live</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/vera/'>Vera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/verisure/'>Verisure</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wink/'>Wink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/zwave/'>Z-Wave</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/zoneminder/'>ZoneMinder</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/ecobee/'>ecobee</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
<div class="grid__item">
|
||||
<div class="copyright">
|
||||
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
|
||||
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
|
||||
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
|
||||
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
|
||||
|
||||
<div class="credit">
|
||||
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a>.<br>
|
||||
Website powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>.<br />
|
||||
Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.
|
||||
</div>
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">home-assistant.io</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -143,9 +143,15 @@
|
|||
<li>
|
||||
APCUPSd
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -206,6 +206,9 @@ A word of caution: The Arduino boards are not storing states. This means that wi
|
|||
<li>
|
||||
<a href='/components/zigbee/'>ZigBee</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/maxcube/'>eQ-3 MAX! Cube</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -168,6 +168,9 @@
|
|||
<li>
|
||||
<a href='/components/zigbee/'>ZigBee</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/maxcube/'>eQ-3 MAX! Cube</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
|
296
components/binary_sensor.android_ip_webcam/index.html
Normal file
296
components/binary_sensor.android_ip_webcam/index.html
Normal file
|
@ -0,0 +1,296 @@
|
|||
<!doctype html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Android IP Webcam Binary Sensor - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions how to integrate binary motion sensors for Android IP webcam within Home Assistant.">
|
||||
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/binary_sensor.android_ip_webcam/">
|
||||
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Android IP Webcam Binary Sensor">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/binary_sensor.android_ip_webcam/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions how to integrate binary motion sensors for Android IP webcam within Home Assistant.">
|
||||
<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="Android IP Webcam Binary Sensor">
|
||||
<meta name="twitter:description" content="Instructions how to integrate binary motion sensors for Android IP webcam 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">
|
||||
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
|
||||
<link rel='shortcut icon' href='/images/favicon.ico' />
|
||||
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
|
||||
</head>
|
||||
|
||||
<body >
|
||||
|
||||
<header>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
|
||||
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
|
||||
<a href="/" class="site-title">
|
||||
<img width='40' src='/demo/favicon-192x192.png'>
|
||||
<span>Home Assistant</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
|
||||
<nav>
|
||||
<input type="checkbox" id="toggle">
|
||||
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
|
||||
<ul class="menu pull-right">
|
||||
|
||||
<li><a href="/getting-started/">Getting started</a></li>
|
||||
<li><a href="/components/">Components</a></li>
|
||||
<li><a href="/docs/">Docs</a></li>
|
||||
<li><a href="/cookbook/">Examples</a></li>
|
||||
<li><a href="/developers/">Developers</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li><a href="/help/">Need help?</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid grid-center">
|
||||
|
||||
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
|
||||
|
||||
|
||||
<article class="page">
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<h1 class="title indent">
|
||||
Android IP Webcam Binary Sensor
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
|
||||
|
||||
<p>The <code class="highlighter-rouge">android_ip_webcam</code> binary sensor platform lets you observe the motion state of <a href="https://play.google.com/store/apps/details?id=com.pas.webcam">Android IP webcam</a> sensors through Home Assistant.</p>
|
||||
|
||||
<p>Devices will be configured automatically. Please refer to the <a href="/components/android_ip_webcam/">component</a> configuration on how to setup.</p>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
<div class="grid">
|
||||
|
||||
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_components/binary_sensor.android_ip_webcam.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/android_ip_webcam.png' />
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.40
|
||||
</div>
|
||||
<div class='section'>
|
||||
This is a platform for
|
||||
<a href='/components/binary_sensor/'>the Binary Sensor component</a>.
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/android_ip_webcam/'>
|
||||
Android IP Webcam
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.android_ip_webcam/'>
|
||||
Android IP Webcam Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/switch.android_ip_webcam/'>
|
||||
Android IP Webcam Settings
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Binary Sensor</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
Android IP Webcam Binary Sensor
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.command_line/'>Command line Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.concord232/'>Concord232 Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ecobee/'>Ecobee Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.enocean/'>EnOcean Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.envisalink/'>Envisalink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ffmpeg_motion/'>FFmpeg Motion Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ffmpeg_noise/'>FFmpeg Noise Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.flic/'>Flic Smart Button</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.http/'>HTTP Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.hikvision/'>Hikvision Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.homematic/'>Homematic Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.isy994/'>ISY994 Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.insteon_plm/'>Insteon PLM Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.iss/'>International Space Station</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.knx/'>KNX Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.mqtt/'>MQTT Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.modbus/'>Modbus Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.mysensors/'>MySensors Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.nx584/'>NX584 zones</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.nest/'>Nest Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.netatmo/'>Netatmo Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.octoprint/'>OctoPrint Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.rest/'>RESTful Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.rpi_gpio/'>Raspberry PI GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.sleepiq/'>SleepIQ Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.tcp/'>TCP Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.template/'>Template Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.threshold/'>Threshold Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.trend/'>Trend Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.vera/'>Vera Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.wink/'>Wink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.zwave/'>Z-Wave Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.zigbee/'>ZigBee Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.arest/'>aREST Binary Sensor</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
<div class="grid__item">
|
||||
<div class="copyright">
|
||||
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
|
||||
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
|
||||
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
|
||||
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
|
||||
|
||||
<div class="credit">
|
||||
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a>.<br>
|
||||
Website powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>.<br />
|
||||
Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.
|
||||
</div>
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">home-assistant.io</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -149,12 +149,18 @@
|
|||
<li>
|
||||
APCUPSd Binary Sensor
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -175,12 +175,18 @@ This sensor is not suitable for fast state changes because there is a high possi
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -144,12 +144,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
Aurora sensor
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -165,12 +165,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
BeagleBone Black GPIO Binary Sensor
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
296
components/binary_sensor.blink/index.html
Normal file
296
components/binary_sensor.blink/index.html
Normal file
|
@ -0,0 +1,296 @@
|
|||
<!doctype html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Blink Binary Sensor - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions for how to setup Blink binary sensors within Home Assistant.">
|
||||
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/binary_sensor.blink/">
|
||||
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Blink Binary Sensor">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/binary_sensor.blink/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions for how to setup Blink binary sensors within Home Assistant.">
|
||||
<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="Blink Binary Sensor">
|
||||
<meta name="twitter:description" content="Instructions for how to setup Blink binary sensors 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">
|
||||
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
|
||||
<link rel='shortcut icon' href='/images/favicon.ico' />
|
||||
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
|
||||
</head>
|
||||
|
||||
<body >
|
||||
|
||||
<header>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
|
||||
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
|
||||
<a href="/" class="site-title">
|
||||
<img width='40' src='/demo/favicon-192x192.png'>
|
||||
<span>Home Assistant</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
|
||||
<nav>
|
||||
<input type="checkbox" id="toggle">
|
||||
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
|
||||
<ul class="menu pull-right">
|
||||
|
||||
<li><a href="/getting-started/">Getting started</a></li>
|
||||
<li><a href="/components/">Components</a></li>
|
||||
<li><a href="/docs/">Docs</a></li>
|
||||
<li><a href="/cookbook/">Examples</a></li>
|
||||
<li><a href="/developers/">Developers</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li><a href="/help/">Need help?</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid grid-center">
|
||||
|
||||
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
|
||||
|
||||
|
||||
<article class="page">
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<h1 class="title indent">
|
||||
Blink Binary Sensor
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
|
||||
|
||||
<p class="note">
|
||||
To get your Blink binary sensors working with Home Assistant, follow the instructions for the general <a href="/components/blink/">Blink component</a>.
|
||||
</p>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
<div class="grid">
|
||||
|
||||
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_components/binary_sensor.blink.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/blink.png' />
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.40
|
||||
</div>
|
||||
<div class='section'>
|
||||
This is a platform for
|
||||
<a href='/components/binary_sensor/'>the Binary Sensor component</a>.
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/blink/'>
|
||||
Blink
|
||||
</a></li>
|
||||
<li><a href='/components/camera.blink/'>
|
||||
Blink Camera
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.blink/'>
|
||||
Blink Sensor
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Binary Sensor</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
Blink Binary Sensor
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.command_line/'>Command line Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.concord232/'>Concord232 Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ecobee/'>Ecobee Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.enocean/'>EnOcean Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.envisalink/'>Envisalink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ffmpeg_motion/'>FFmpeg Motion Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ffmpeg_noise/'>FFmpeg Noise Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.flic/'>Flic Smart Button</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.http/'>HTTP Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.hikvision/'>Hikvision Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.homematic/'>Homematic Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.isy994/'>ISY994 Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.insteon_plm/'>Insteon PLM Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.iss/'>International Space Station</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.knx/'>KNX Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.mqtt/'>MQTT Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.modbus/'>Modbus Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.mysensors/'>MySensors Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.nx584/'>NX584 zones</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.nest/'>Nest Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.netatmo/'>Netatmo Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.octoprint/'>OctoPrint Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.rest/'>RESTful Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.rpi_gpio/'>Raspberry PI GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.sleepiq/'>SleepIQ Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.tcp/'>TCP Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.template/'>Template Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.threshold/'>Threshold Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.trend/'>Trend Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.vera/'>Vera Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.wink/'>Wink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.zwave/'>Z-Wave Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.zigbee/'>ZigBee Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.arest/'>aREST Binary Sensor</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
<div class="grid__item">
|
||||
<div class="copyright">
|
||||
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
|
||||
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
|
||||
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
|
||||
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
|
||||
|
||||
<div class="credit">
|
||||
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a>.<br>
|
||||
Website powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>.<br />
|
||||
Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.
|
||||
</div>
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">home-assistant.io</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -162,12 +162,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
BloomSky Binary Sensor
|
||||
</li>
|
||||
|
|
|
@ -206,12 +206,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -145,12 +145,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -138,12 +138,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -109,6 +109,33 @@
|
|||
<li><strong>device_class</strong> (<em>Optional</em>): The <a href="/components/binary_sensor/">type/class</a> of the sensor to set the icon in the frontend.</li>
|
||||
</ul>
|
||||
|
||||
<p>EnOcean binary sensors only generate ‘button_pressed’ events. The event data has follwing four fields:</p>
|
||||
|
||||
<ul>
|
||||
<li><strong>id</strong>: The ID of the device (see configuration).</li>
|
||||
<li><strong>pushed</strong>: <code class="highlighter-rouge">1</code> for a button press, <code class="highlighter-rouge">0</code> for a button release.</li>
|
||||
<li><strong>which</strong>: Always <code class="highlighter-rouge">0</code> when using the single rocket. <code class="highlighter-rouge">0</code> or <code class="highlighter-rouge">1</code> when using the dual rocket switch.</li>
|
||||
<li><strong>onoff</strong>: <code class="highlighter-rouge">0</code> or <code class="highlighter-rouge">1</code> for either side of the rocket.</li>
|
||||
</ul>
|
||||
|
||||
<p>Sample automation to switch lights on and off:</p>
|
||||
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example automation to turn lights on/off on button release</span>
|
||||
<span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">alias</span><span class="pi">:</span> <span class="s">hall light switches</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">event</span>
|
||||
<span class="s">event_type</span><span class="pi">:</span> <span class="s">button_pressed</span>
|
||||
<span class="s">event_data</span><span class="pi">:</span>
|
||||
<span class="s">id</span><span class="pi">:</span> <span class="pi">[</span><span class="nv">0xYY</span><span class="pi">,</span> <span class="nv">0xYY</span><span class="pi">,</span> <span class="nv">0xYY</span><span class="pi">,</span> <span class="nv">0xYY</span><span class="pi">]</span>
|
||||
<span class="s">pushed</span><span class="pi">:</span> <span class="s">0</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="s">service_template</span><span class="pi">:</span> <span class="s2">"</span><span class="s">{%</span><span class="nv"> </span><span class="s">if</span><span class="nv"> </span><span class="s">trigger.event.data.onoff</span><span class="nv"> </span><span class="s">%}</span><span class="nv"> </span><span class="s">light.turn_on</span><span class="nv"> </span><span class="s">{%</span><span class="nv"> </span><span class="s">else</span><span class="nv"> </span><span class="s">%}</span><span class="nv"> </span><span class="s">light.turn_off</span><span class="nv"> </span><span class="s">{%endif</span><span class="nv"> </span><span class="s">%}"</span>
|
||||
<span class="s">data_template</span><span class="pi">:</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s2">"</span><span class="s">{%</span><span class="nv"> </span><span class="s">if</span><span class="nv"> </span><span class="s">trigger.event.data.which</span><span class="nv"> </span><span class="s">==</span><span class="nv"> </span><span class="s">1</span><span class="nv"> </span><span class="s">%}</span><span class="nv"> </span><span class="s">light.hall_left</span><span class="nv"> </span><span class="s">{%</span><span class="nv"> </span><span class="s">else</span><span class="nv"> </span><span class="s">%}</span><span class="nv"> </span><span class="s">light.hall_right</span><span class="nv"> </span><span class="s">{%endif</span><span class="nv"> </span><span class="s">%}"</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
@ -158,12 +185,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -142,12 +142,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -169,12 +169,18 @@ If the <code class="highlighter-rouge">ffmpeg</code> process is broken, the sens
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -155,12 +155,18 @@ If the <code class="highlighter-rouge">ffmpeg</code> process is broken, the sens
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -183,12 +183,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -213,12 +213,18 @@ binary_sensor.front_port_line_crossing
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -149,12 +149,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -198,12 +198,18 @@ You should choose a unique device name (DEVICE_NAME) to avoid clashes with other
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -139,12 +139,18 @@ component.</p>
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -162,12 +162,18 @@ If you set <code class="highlighter-rouge">show_on_map</code> <code class="highl
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -152,12 +152,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -141,12 +141,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -165,12 +165,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -202,12 +202,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -264,12 +264,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -188,12 +188,18 @@ You must have the <a href="/components/nest/">Nest component</a> configured to u
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -196,12 +196,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -169,12 +169,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -161,12 +161,18 @@ You must have the <a href="/components/octoprint/">OctoPrint component</a> confi
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -234,12 +234,18 @@ User-Agent: Home Assistant
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -165,12 +165,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -135,12 +135,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -157,12 +157,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -213,12 +213,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -151,12 +151,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -180,12 +180,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -152,12 +152,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -179,12 +179,18 @@ The above devices are confimed to work, but others may work as well.
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -161,12 +161,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -150,12 +150,18 @@
|
|||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -137,12 +137,18 @@
|
|||
<li><a href='/components/binary_sensor.apcupsd/'>
|
||||
APCUPSd Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.android_ip_webcam/'>
|
||||
Android IP Webcam Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.aurora/'>
|
||||
Aurora sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.bbb_gpio/'>
|
||||
BeagleBone Black GPIO Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.blink/'>
|
||||
Blink Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.bloomsky/'>
|
||||
BloomSky Binary Sensor
|
||||
</a></li>
|
||||
|
|
359
components/blink/index.html
Normal file
359
components/blink/index.html
Normal file
|
@ -0,0 +1,359 @@
|
|||
<!doctype html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Blink - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions for how to integrate Blink camera/security system within Home Assistant.">
|
||||
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/blink/">
|
||||
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Blink">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/blink/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions for how to integrate Blink camera/security system within Home Assistant.">
|
||||
<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="Blink">
|
||||
<meta name="twitter:description" content="Instructions for how to integrate Blink camera/security system 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">
|
||||
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
|
||||
<link rel='shortcut icon' href='/images/favicon.ico' />
|
||||
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
|
||||
</head>
|
||||
|
||||
<body >
|
||||
|
||||
<header>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
|
||||
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
|
||||
<a href="/" class="site-title">
|
||||
<img width='40' src='/demo/favicon-192x192.png'>
|
||||
<span>Home Assistant</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
|
||||
<nav>
|
||||
<input type="checkbox" id="toggle">
|
||||
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
|
||||
<ul class="menu pull-right">
|
||||
|
||||
<li><a href="/getting-started/">Getting started</a></li>
|
||||
<li><a href="/components/">Components</a></li>
|
||||
<li><a href="/docs/">Docs</a></li>
|
||||
<li><a href="/cookbook/">Examples</a></li>
|
||||
<li><a href="/developers/">Developers</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li><a href="/help/">Need help?</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid grid-center">
|
||||
|
||||
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
|
||||
|
||||
|
||||
<article class="page">
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<h1 class="title indent">
|
||||
Blink
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
|
||||
|
||||
<p>The <code class="highlighter-rouge">blink</code> component lets you view camera images and motion events from <a href="http://blinkforhome.com">Blink</a> camera and security systems.</p>
|
||||
|
||||
<p>You will need your Blink login information (username, usually you email address, and password) to use this module.</p>
|
||||
|
||||
<p>To set it up, add the following information 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">blink</span><span class="pi">:</span>
|
||||
<span class="s">username</span><span class="pi">:</span> <span class="s">YOUR_USERNAME</span>
|
||||
<span class="s">password</span><span class="pi">:</span> <span class="s">YOUR_PASSWORD</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
<p>Once loaded, your front end will have the following components:</p>
|
||||
<ul>
|
||||
<li>A camera image for each camera in your system.</li>
|
||||
<li>A binary_sensor per camera that indicates whether motion detection is enabled.</li>
|
||||
<li>A binary_sensor for the system that indicates if the system is armed or disarmed.</li>
|
||||
<li>A sesnor per camera that reports temperature.</li>
|
||||
<li>A sensor per camera that reports battery level.</li>
|
||||
<li>A sensor per camera that reports unread notification (ie. detected motion events).</li>
|
||||
</ul>
|
||||
|
||||
<p>Since the cameras are battery operated, the images are only updated in Home Assistant when the user manually forces a new photo. The image can only be updated in Home Assistant every 60 seconds in order to not overwhelm Blink’s servers with API requests.</p>
|
||||
|
||||
<p>Services:
|
||||
There are three services availiabe for the blink platform:</p>
|
||||
<ul>
|
||||
<li>arm_system</li>
|
||||
<li>arm_camera</li>
|
||||
<li>snap_picture</li>
|
||||
</ul>
|
||||
|
||||
<p>For arm_system, the value sent can be either “True” or “False” and will arm and disarm the whole blink system, respectively</p>
|
||||
|
||||
<p>Arm system example</p>
|
||||
<div class="language-json highlighter-rouge"><pre class="highlight"><code><span class="p">{</span><span class="w">
|
||||
</span><span class="nt">"device_armed"</span><span class="p">:</span><span class="w"> </span><span class="s2">"True"</span><span class="w">
|
||||
</span><span class="p">}</span><span class="w">
|
||||
</span></code></pre>
|
||||
</div>
|
||||
|
||||
<p>Arm camera follows a similar structure, but each indidivual camera can have motion detection enabled or disabled. Because of this, you also need to supply a name. For example, if I have a camera named “Living Room” and I want to turn off motion detection on that camera, I’d call the blink.arm_camera service with the following payload:</p>
|
||||
<div class="language-json highlighter-rouge"><pre class="highlight"><code><span class="p">{</span><span class="w">
|
||||
</span><span class="nt">"friendly_name"</span><span class="p">:</span><span class="w"> </span><span class="s2">"Living Room"</span><span class="p">,</span><span class="w">
|
||||
</span><span class="nt">"device_armed"</span><span class="p">:</span><span class="w"> </span><span class="s2">"False"</span><span class="w">
|
||||
</span><span class="p">}</span><span class="w">
|
||||
</span></code></pre>
|
||||
</div>
|
||||
|
||||
<p>The blink.snap_picture service takes the camera name as the payload and with take a new picture with your camera.</p>
|
||||
<div class="highlighter-rouge"><pre class="highlight"><code><span class="p">{</span><span class="w">
|
||||
</span><span class="nt">"friendly_name"</span><span class="p">:</span><span class="w"> </span><span class="s2">"Living Room"</span><span class="w">
|
||||
</span><span class="p">}</span><span class="w">
|
||||
</span></code></pre>
|
||||
</div>
|
||||
|
||||
<p>Configuration variables:</p>
|
||||
|
||||
<ul>
|
||||
<li><strong>username</strong> (<em>Required</em>): Your username to login to Blink</li>
|
||||
<li><strong>password</strong> (<em>Required</em>): Your password to login to Blink</li>
|
||||
</ul>
|
||||
|
||||
<p class="img">
|
||||
<img src="/images/screenshots/blink_example_frontend.png" />
|
||||
</p>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
<div class="grid">
|
||||
|
||||
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_components/blink.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/blink.png' />
|
||||
</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/binary_sensor.blink/'>
|
||||
Blink Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/camera.blink/'>
|
||||
Blink Camera
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.blink/'>
|
||||
Blink Sensor
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Hub</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
Blink
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/digital_ocean/'>Digital Ocean</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/emulated_hue/'>Emulated Hue Bridge</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/enocean/'>EnOcean</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/ffmpeg/'>FFmpeg</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/homematic/'>Homematic</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/isy994/'>ISY994 Controller</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/insteon_local/'>Insteon (local)</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/insteon_hub/'>Insteon Hub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/insteon_plm/'>Insteon PLM</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/joaoapps_join/'>Joaoapps Join</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/litejet/'>LiteJet</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/lutron/'>Lutron</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/mqtt/'>MQTT</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/microsoft_face/'>Microsoft Face</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/mochad/'>Mochad</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/modbus/'>Modbus</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/mysensors/'>MySensors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/neato/'>Neato Robotics</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/nest/'>Nest</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/netatmo/'>Netatmo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/nuimo_controller/'>Nuimo controller</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/octoprint/'>OctoPrint</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/pilight/'>Pilight</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/qwikswitch/'>QwikSwitch QSUSB Hub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/rfxtrx/'>RFXtrx</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/rflink/'>Rflink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/scsgate/'>SCSGate</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sleepiq/'>SleepIQ</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/tellstick/'>TellStick</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/tellduslive/'>Telldus Live</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/vera/'>Vera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/verisure/'>Verisure</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wink/'>Wink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/zwave/'>Z-Wave</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/zoneminder/'>ZoneMinder</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/ecobee/'>ecobee</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
<div class="grid__item">
|
||||
<div class="copyright">
|
||||
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
|
||||
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
|
||||
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
|
||||
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
|
||||
|
||||
<div class="credit">
|
||||
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a>.<br>
|
||||
Website powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>.<br />
|
||||
Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.
|
||||
</div>
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">home-assistant.io</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -150,9 +150,15 @@
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
BloomSky
|
||||
</li>
|
||||
|
|
|
@ -150,6 +150,9 @@
|
|||
<li>
|
||||
Browser
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -156,6 +156,9 @@
|
|||
<li>
|
||||
Amcrest IP Camera
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
224
components/camera.blink/index.html
Normal file
224
components/camera.blink/index.html
Normal file
|
@ -0,0 +1,224 @@
|
|||
<!doctype html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Blink Camera - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions for how to setup Blink cameras within Home Assistant.">
|
||||
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/camera.blink/">
|
||||
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Blink Camera">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/camera.blink/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions for how to setup Blink cameras within Home Assistant.">
|
||||
<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="Blink Camera">
|
||||
<meta name="twitter:description" content="Instructions for how to setup Blink cameras 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">
|
||||
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
|
||||
<link rel='shortcut icon' href='/images/favicon.ico' />
|
||||
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
|
||||
</head>
|
||||
|
||||
<body >
|
||||
|
||||
<header>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
|
||||
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
|
||||
<a href="/" class="site-title">
|
||||
<img width='40' src='/demo/favicon-192x192.png'>
|
||||
<span>Home Assistant</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
|
||||
<nav>
|
||||
<input type="checkbox" id="toggle">
|
||||
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
|
||||
<ul class="menu pull-right">
|
||||
|
||||
<li><a href="/getting-started/">Getting started</a></li>
|
||||
<li><a href="/components/">Components</a></li>
|
||||
<li><a href="/docs/">Docs</a></li>
|
||||
<li><a href="/cookbook/">Examples</a></li>
|
||||
<li><a href="/developers/">Developers</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li><a href="/help/">Need help?</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid grid-center">
|
||||
|
||||
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
|
||||
|
||||
|
||||
<article class="page">
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<h1 class="title indent">
|
||||
Blink Camera
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
|
||||
|
||||
<p class="note">
|
||||
To get your Blink cameras working with Home Assistant, follow the instructions for the general <a href="/components/blink/">Blink component</a>.
|
||||
</p>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
<div class="grid">
|
||||
|
||||
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_components/camera.blink.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/blink.png' />
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.40
|
||||
</div>
|
||||
<div class='section'>
|
||||
This is a platform for
|
||||
<a href='/components/camera/'>the Camera component</a>.
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/blink/'>
|
||||
Blink
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.blink/'>
|
||||
Blink Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.blink/'>
|
||||
Blink Sensor
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Camera</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
Blink Camera
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.ffmpeg/'>FFmpeg Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.foscam/'>Foscam IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.generic/'>Generic IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.mjpeg/'>Generic MJPEG IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.local_file/'>Local File</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/ifttt.manything/'>ManyThing</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.nest/'>Nest Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.netatmo/'>Netatmo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.rpi_camera/'>Raspberry Pi Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.synology/'>Synology Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.uvc/'>UniFi Video Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.verisure/'>Verisure Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.zoneminder/'>ZoneMinder Camera</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
<div class="grid__item">
|
||||
<div class="copyright">
|
||||
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
|
||||
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
|
||||
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
|
||||
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
|
||||
|
||||
<div class="credit">
|
||||
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a>.<br>
|
||||
Website powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>.<br />
|
||||
Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.
|
||||
</div>
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">home-assistant.io</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -143,6 +143,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
BloomSky Camera
|
||||
</li>
|
||||
|
|
|
@ -152,6 +152,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -146,6 +146,9 @@ There seems to be some issues within Foscam with lengthy passwords and passwords
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -154,6 +154,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -147,6 +147,9 @@ The given <code class="highlighter-rouge">file_path</code> must be an existing f
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -145,6 +145,9 @@ There is a <a href="https://github.com/shazow/urllib3/issues/800" target="_blank
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -142,6 +142,9 @@ You must have the <a href="/components/nest/">Nest component</a> configured to u
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -175,6 +175,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -149,6 +149,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -159,6 +159,9 @@ Most users will need to set <code class="highlighter-rouge">valid_ssl</code> to
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -140,6 +140,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -144,6 +144,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -147,6 +147,9 @@ You must have the <a href="/components/zoneminder/">ZoneMinder component</a> con
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -113,6 +113,9 @@
|
|||
<li><a href='/components/camera.amcrest/'>
|
||||
Amcrest IP Camera
|
||||
</a></li>
|
||||
<li><a href='/components/camera.blink/'>
|
||||
Blink Camera
|
||||
</a></li>
|
||||
<li><a href='/components/camera.bloomsky/'>
|
||||
BloomSky Camera
|
||||
</a></li>
|
||||
|
|
|
@ -111,14 +111,16 @@ limits).</p>
|
|||
|
||||
<p>A <em>climate</em> is a predefined or user-defined set of states that the
|
||||
thermostat aims to achieve. The ecobee thermostat provides three predefined
|
||||
climates: home, away, and sleep. The user can define additional climates.</p>
|
||||
climates: Home, Away, and Sleep. The user can define additional climates.</p>
|
||||
|
||||
<p>A <em>hold</em> is an override of the target temperature defined in the
|
||||
currently active climate. The temperature targeted in the hold mode may be
|
||||
explicitly set (temperature hold) or it may be derived from a reference
|
||||
climate (home or away hold). All holds are temporary. Temperature and
|
||||
explicitly set (temperature hold), it may be derived from a reference
|
||||
climate (home, away, sleep, etc.), or it may be derived from a vacation
|
||||
defined by the thermostat. All holds are temporary. Temperature and
|
||||
climate holds expire when the thermostat transitions to the next climate
|
||||
defined in its program.</p>
|
||||
defined in its program. A vacation hold starts at the beginning of the
|
||||
defined vacation period, and expires when the vacation period ends.</p>
|
||||
|
||||
<p>When in <em>away mode</em>, the target temperature is permanently overridden by
|
||||
the target temperature defined for the away climate. The away mode is a
|
||||
|
@ -135,7 +137,7 @@ auto, and off.</p>
|
|||
<code class="highlighter-rouge">target_temperature_low</code>, <code class="highlighter-rouge">target_temperature_high</code>, <code class="highlighter-rouge">desired_fan_mode</code>,
|
||||
<code class="highlighter-rouge">fan</code>, <code class="highlighter-rouge">current_hold_mode</code>, <code class="highlighter-rouge">current_operation</code>, <code class="highlighter-rouge">operation_list</code>,
|
||||
<code class="highlighter-rouge">operation_mode</code>, <code class="highlighter-rouge">mode</code>, <code class="highlighter-rouge">fan_min_on_time</code>, <code class="highlighter-rouge">device_state_attributes</code>,
|
||||
<code class="highlighter-rouge">is_away_mode_on</code>.
|
||||
<code class="highlighter-rouge">is_away_mode_on</code>, <code class="highlighter-rouge">vacation</code>, <code class="highlighter-rouge">climate_list</code>.
|
||||
The attributes <code class="highlighter-rouge">min_temp</code> and <code class="highlighter-rouge">max_temp</code> are meaningless constant values.</p>
|
||||
|
||||
<h3><a class="title-link" name="attribute-name" href="#attribute-name"></a> Attribute <code class="highlighter-rouge">name</code></h3>
|
||||
|
@ -307,7 +309,7 @@ auto operation mode.</p>
|
|||
<tbody>
|
||||
<tr>
|
||||
<td>String</td>
|
||||
<td>‘home’, ‘away’, ‘temp’, None</td>
|
||||
<td>‘temp’, ‘vacation’, ‘home’, ‘away’, etc., None</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -371,7 +373,8 @@ auto operation mode.</p>
|
|||
|
||||
<h3><a class="title-link" name="attribute-mode" href="#attribute-mode"></a> Attribute <code class="highlighter-rouge">mode</code></h3>
|
||||
|
||||
<p>Returns the climate currently active on the thermostat.</p>
|
||||
<p>Returns the climate currently active on the thermostat. The mode
|
||||
is returned as the user-visible name (rather than the internally used name).</p>
|
||||
|
||||
<h3><a class="title-link" name="attribute-fan_min_on_time" href="#attribute-fan_min_on_time"></a> Attribute <code class="highlighter-rouge">fan_min_on_time</code></h3>
|
||||
|
||||
|
@ -416,6 +419,29 @@ service for more detail).</p>
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
<h3><a class="title-link" name="attribute-vacation" href="#attribute-vacation"></a> Attribute <code class="highlighter-rouge">vacation</code></h3>
|
||||
|
||||
<p>Returns the currently active vacation or <code class="highlighter-rouge">None</code>.</p>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Attribute type</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>String</td>
|
||||
<td>Name of currently active vacation</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h3><a class="title-link" name="attribute-climate_list" href="#attribute-climate_list"></a> Attribute <code class="highlighter-rouge">climate_list</code></h3>
|
||||
|
||||
<p>Returns the list of climates defined in the thermostat.</p>
|
||||
|
||||
<h2><a class="title-link" name="services" href="#services"></a> Services</h2>
|
||||
|
||||
<p>The following services are provided by the Ecobee Thermostat:
|
||||
|
@ -453,10 +479,14 @@ are not implemented for this thermostat.</p>
|
|||
|
||||
<h3><a class="title-link" name="service-set_hold_mode" href="#service-set_hold_mode"></a> Service <code class="highlighter-rouge">set_hold_mode</code></h3>
|
||||
|
||||
<p>Puts the thermostat into the given hold mode. For ‘home’ and ‘away’, the
|
||||
target temperature is taken from the home or away, climate, respectively.
|
||||
<p>Puts the thermostat into the given hold mode. For ‘home’, ‘away’, ‘sleep’,
|
||||
and ony other hold based on a reference climate, the
|
||||
target temperature is taken from the reference climate.
|
||||
For ‘temp’, the current temperature is taken as the target temperature.
|
||||
When None is provided as parameter, the hold_mode is turned off.</p>
|
||||
When None is provided as parameter, the hold_mode is turned off.
|
||||
It is not possible to set a vacation hold; such hold has to be
|
||||
defined on the thermostat directly. However, a vacation hold can be
|
||||
cancelled.</p>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
|
@ -475,7 +505,7 @@ When None is provided as parameter, the hold_mode is turned off.</p>
|
|||
<tr>
|
||||
<td><code class="highlighter-rouge">hold_mode</code></td>
|
||||
<td>no</td>
|
||||
<td>‘home’, ‘away’, ‘temp’, None</td>
|
||||
<td>‘temp’, ‘home’, ‘away’, ‘sleep’, etc., None</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
@ -113,9 +113,10 @@
|
|||
<li><strong>ac_mode</strong> (<em>Optional</em>): Set the switch specified in the <em>heater</em> option to be treated as a cooling device instead of a heating device.</li>
|
||||
<li><strong>min_cycle_duration</strong> (<em>Optional</em>): Set a minimum amount of time that the switch specified in the <em>heater</em> option must be in it’s current state prior to being switched either off or on.</li>
|
||||
<li><strong>tolerance</strong> (<em>Optional</em>): Set a minimum amount of difference between the temperature read by the sensor specified in the <em>target_sensor</em> option and the target temperature that must change prior to being switched either off or on. For example, if the target temperature is 25 and the tolerance is 0.5 the heater will start when the sensor goes below 24.5 and it will stop when the sensor goes above 25.5.</li>
|
||||
<li><strong>keep_alive</strong> (<em>Optional</em>): Set a keep-alive interval. If set, the switch specified in the <em>heater</em> option will be triggered every time the interval elapses. Use with heaters and A/C units that shut off if they don’t receive a signal from their remote for a while.</li>
|
||||
</ul>
|
||||
|
||||
<p>A full configuration example looks like the one below. <code class="highlighter-rouge">min_cycle_duration</code> must contains at least one of the following entries: <code class="highlighter-rouge">days:</code>, <code class="highlighter-rouge">hours:</code>, <code class="highlighter-rouge">minutes:</code>, <code class="highlighter-rouge">seconds:</code> or <code class="highlighter-rouge">milliseconds:</code>.</p>
|
||||
<p>A full configuration example looks like the one below. <code class="highlighter-rouge">min_cycle_duration</code> and <code class="highlighter-rouge">keep_alive</code> must contain at least one of the following entries: <code class="highlighter-rouge">days:</code>, <code class="highlighter-rouge">hours:</code>, <code class="highlighter-rouge">minutes:</code>, <code class="highlighter-rouge">seconds:</code> or <code class="highlighter-rouge">milliseconds:</code>.</p>
|
||||
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Full example configuration.yaml entry</span>
|
||||
<span class="s">climate</span><span class="pi">:</span>
|
||||
|
@ -129,6 +130,8 @@
|
|||
<span class="s">tolerance</span><span class="pi">:</span> <span class="s">0.3</span>
|
||||
<span class="s">min_cycle_duration</span><span class="pi">:</span>
|
||||
<span class="s">seconds</span><span class="pi">:</span> <span class="s">5</span>
|
||||
<span class="s">keep_alive</span><span class="pi">:</span>
|
||||
<span class="s">minutes</span><span class="pi">:</span> <span class="s">3</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -202,6 +202,9 @@
|
|||
<li>
|
||||
<a href='/components/zigbee/'>ZigBee</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/maxcube/'>eQ-3 MAX! Cube</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
|
231
components/config/index.html
Normal file
231
components/config/index.html
Normal file
|
@ -0,0 +1,231 @@
|
|||
<!doctype html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Config - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions how to setup the configuration panel Home Assistant.">
|
||||
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/config/">
|
||||
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Config">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/config/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions how to setup the configuration panel Home Assistant.">
|
||||
<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="Config">
|
||||
<meta name="twitter:description" content="Instructions how to setup the configuration panel 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">
|
||||
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
|
||||
<link rel='shortcut icon' href='/images/favicon.ico' />
|
||||
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
|
||||
</head>
|
||||
|
||||
<body >
|
||||
|
||||
<header>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
|
||||
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
|
||||
<a href="/" class="site-title">
|
||||
<img width='40' src='/demo/favicon-192x192.png'>
|
||||
<span>Home Assistant</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
|
||||
<nav>
|
||||
<input type="checkbox" id="toggle">
|
||||
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
|
||||
<ul class="menu pull-right">
|
||||
|
||||
<li><a href="/getting-started/">Getting started</a></li>
|
||||
<li><a href="/components/">Components</a></li>
|
||||
<li><a href="/docs/">Docs</a></li>
|
||||
<li><a href="/cookbook/">Examples</a></li>
|
||||
<li><a href="/developers/">Developers</a></li>
|
||||
<li><a href="/blog/">Blog</a></li>
|
||||
<li><a href="/help/">Need help?</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid grid-center">
|
||||
|
||||
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
|
||||
|
||||
|
||||
<article class="page">
|
||||
|
||||
|
||||
|
||||
|
||||
<header>
|
||||
<h1 class="title indent">
|
||||
Config
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
|
||||
|
||||
<p>The <code class="highlighter-rouge">config</code> component is designed to display panels in the frontend to configure and manage parts of Home Assistant.</p>
|
||||
|
||||
<p>To enable the configuration panel, 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">config</span><span class="pi">:</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
<h3><a class="title-link" name="group--views" href="#group--views"></a> Group & Views</h3>
|
||||
|
||||
<p>The <strong>Groups & Views</strong> sections allows you to re-arrange your <a href="/components/group/">groups</a>. Also, you can edit the group’s setting and switch between “view” and “group”.</p>
|
||||
|
||||
<p class="img">
|
||||
<img src="/images/screenshots/group-views.png" />
|
||||
</p>
|
||||
|
||||
<h3><a class="title-link" name="server-management" href="#server-management"></a> Server Management</h3>
|
||||
|
||||
<p>This section enables you to control Home Assistant from within Home Assistant. Check your configuration, reload the core, groups, and automation, and the Home Assistant process itself. With a single mouse click.</p>
|
||||
|
||||
<p class="img">
|
||||
<img src="/images/screenshots/server-management.png" />
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
<div class="grid">
|
||||
|
||||
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_components/config.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/home-assistant.png' />
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.39
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Other</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
Config
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/demo/'>Demo platforms</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/discovery/'>Discovery</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/feedreader/'>Feedreader</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/frontend/'>Frontend</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/http/'>HTTP</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/ha/'>Home Assistant 0.39</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/introduction/'>Introduction</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/keyboard_remote/'>Keyboard Remote</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/logger/'>Logger</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/mqtt_eventstream/'>MQTT Eventstream</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/persistent_notification/'>Persistent notification</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upnp/'>UPnP</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/updater/'>Updater</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/zeroconf/'>Zeroconf/Avahi/Bonjour</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
<div class="grid__item">
|
||||
<div class="copyright">
|
||||
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
|
||||
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
|
||||
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
|
||||
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
|
||||
|
||||
<div class="credit">
|
||||
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a>.<br>
|
||||
Website powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>.<br />
|
||||
Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.
|
||||
</div>
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">home-assistant.io</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
|
||||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
||||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
||||
s.parentNode.insertBefore(g,s)}(document,'script'));
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -128,6 +128,9 @@ This component is intended for developers.
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
Configurator
|
||||
</li>
|
||||
|
|
|
@ -148,6 +148,9 @@
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -147,9 +147,15 @@
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -166,6 +166,9 @@ If you see <code class="highlighter-rouge">Not initializing discovery because co
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -187,9 +187,15 @@
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -241,9 +241,15 @@ The virtual bridge has the ability to turn entities on or off, or change the bri
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -170,9 +170,15 @@
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -168,6 +168,9 @@
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -170,9 +170,15 @@ You need the <code class="highlighter-rouge">ffmpeg</code> binary in your system
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -119,6 +119,9 @@
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -123,6 +123,9 @@
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -347,9 +347,15 @@ Using this service provides you direct access to the setValue-method of the prim
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -114,7 +114,7 @@ It’s HIGHLY recommended that you set the <code class="highlighter-rouge">api_p
|
|||
<li><strong>ssl_key</strong> (<em>Optional</em>): Path to your TLS/SSL key to serve Home Assistant over a secure connection.</li>
|
||||
<li><strong>cors_allowed_origins</strong> (<em>Optional</em>): A list of origin domain names to allow <a href="https://en.wikipedia.org/wiki/Cross-origin_resource_sharing">CORS</a> requests from. Enabling this will set the <code class="highlighter-rouge">Access-Control-Allow-Origin</code> header to the Origin header if it is found in the list, and the <code class="highlighter-rouge">Access-Control-Allow-Headers</code> header to <code class="highlighter-rouge">Origin, Accept, X-Requested-With, Content-type, X-HA-access</code>. You must provide the exact Origin, i.e. <code class="highlighter-rouge">https://home-assistant.io</code> will allow requests from <code class="highlighter-rouge">https://home-assistant.io</code> but <strong>not</strong> <code class="highlighter-rouge">http://home-assistant.io</code>.</li>
|
||||
<li><strong>use_x_forwarded_for</strong> (<em>Optional</em>): Enable parsing of the <code class="highlighter-rouge">X-Forwarded-For</code> header, passing on the client’s correct IP address in proxied setups. You should only enable this in a trustworthy network environment, as clients passing that header could easily spoof their source IP address. Defaults to False.</li>
|
||||
<li><strong>trusted_networks</strong> (<em>Optional</em>): List of trusted networks, consisting of IP addresses or networks, that are allowed to bypass password protection when accessing Home Assistant.</li>
|
||||
<li><strong>trusted_networks</strong> (<em>Optional</em>): List of trusted networks, consisting of IP addresses or networks, that are allowed to bypass password protection when accessing Home Assistant. It should be noted that if you use a reverse proxy, all requests to home assistant, regardless of source, will arrive from the reverse proxy IP address. Therefore in a reverse proxy scenario this option should be used with extreme care.</li>
|
||||
<li><strong>ip_ban_enabled</strong> (<em>Optional</em>): Flag indicating whether additional IP filtering is enabled. Defaults to False.</li>
|
||||
<li><strong>login_attempts_threshold</strong> (<em>Optional</em>): Number of failed login attemt from single IP after which it will be automatically banned if <code class="highlighter-rouge">ip_ban_enabled</code> is True. Defaults to -1, meaning that no new automatic bans will be added.</li>
|
||||
</ul>
|
||||
|
@ -199,6 +199,9 @@ Please note, that sources from <code class="highlighter-rouge">trusted_networks<
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -196,6 +196,9 @@ For ManyThing support, you need to set up an <code class="highlighter-rouge">on<
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -111,11 +111,11 @@ Support for these components is provided by the Home Assistant community.
|
|||
<div class="grid__item one-sixth lap-one-whole palm-one-whole">
|
||||
|
||||
<div class="filter-button-group">
|
||||
<a href='#all' class="btn">All (583)</a>
|
||||
<a href='#all' class="btn">All (601)</a>
|
||||
<a href='#featured' class="btn featured">Featured</a>
|
||||
<a href='#added_in_current_version' class="btn added_in_current_version">Added in 0.39 (17)</a>
|
||||
<a href='#added_one_version_ago' class="btn added_one_version_ago">Added in 0.38 (16)</a>
|
||||
<a href='#added_two_versions_ago' class="btn added_two_versions_ago">Added in 0.37 (19)</a>
|
||||
<a href='#added_in_current_version' class="btn added_in_current_version">Added in 0.40 (15)</a>
|
||||
<a href='#added_one_version_ago' class="btn added_one_version_ago">Added in 0.39 (20)</a>
|
||||
<a href='#added_two_versions_ago' class="btn added_two_versions_ago">Added in 0.38 (16)</a>
|
||||
|
||||
|
||||
|
||||
|
@ -137,7 +137,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#binary-sensor' class="btn">
|
||||
Binary Sensor
|
||||
(38)
|
||||
(40)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -151,7 +151,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#camera' class="btn">
|
||||
Camera
|
||||
(15)
|
||||
(16)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -172,7 +172,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#diy' class="btn">
|
||||
DIY
|
||||
(14)
|
||||
(15)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -193,7 +193,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#energy' class="btn">
|
||||
Energy
|
||||
(9)
|
||||
(10)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -235,7 +235,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#hub' class="btn">
|
||||
Hub
|
||||
(39)
|
||||
(41)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -249,7 +249,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#light' class="btn">
|
||||
Light
|
||||
(35)
|
||||
(36)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -263,14 +263,14 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#media-player' class="btn">
|
||||
Media Player
|
||||
(40)
|
||||
(41)
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href='#notifications' class="btn">
|
||||
Notifications
|
||||
(43)
|
||||
(44)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -307,7 +307,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#sensor' class="btn">
|
||||
Sensor
|
||||
(65)
|
||||
(70)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -321,7 +321,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#switch' class="btn">
|
||||
Switch
|
||||
(51)
|
||||
(52)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -356,7 +356,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
<a href='#weather' class="btn">
|
||||
Weather
|
||||
(14)
|
||||
(15)
|
||||
</a>
|
||||
|
||||
|
||||
|
@ -494,7 +494,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/switch.fritzdect/'
|
||||
class='option-card switch added_one_version_ago'
|
||||
class='option-card switch added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -608,7 +608,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/alert/'
|
||||
class='option-card automation added_one_version_ago'
|
||||
class='option-card automation added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -640,7 +640,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/tts.amazon_polly/'
|
||||
class='option-card text-to-speech added_two_versions_ago'
|
||||
class='option-card text-to-speech'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -672,7 +672,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.amcrest/'
|
||||
class='option-card sensor added_two_versions_ago'
|
||||
class='option-card sensor'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -687,8 +687,72 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/android_ip_webcam/'
|
||||
class='option-card hub added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/android_ip_webcam.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Android IP Webcam</div>
|
||||
<div class='category'>Hub</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'
|
||||
class='option-card binary-sensor added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/android_ip_webcam.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Android IP Webcam Binary Sensor</div>
|
||||
<div class='category'>Binary Sensor</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/sensor.android_ip_webcam/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/android_ip_webcam.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Android IP Webcam Sensor</div>
|
||||
<div class='category'>Sensor</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/switch.android_ip_webcam/'
|
||||
class='option-card switch added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/android_ip_webcam.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Android IP Webcam Settings</div>
|
||||
<div class='category'>Switch</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/media_player.anthemav/'
|
||||
class='option-card media-player added_two_versions_ago'
|
||||
class='option-card media-player'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -704,7 +768,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/apiai/'
|
||||
class='option-card voice added_one_version_ago'
|
||||
class='option-card voice added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -720,7 +784,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/media_player.apple_tv/'
|
||||
class='option-card media-player added_one_version_ago featured'
|
||||
class='option-card media-player added_two_versions_ago featured'
|
||||
>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -800,7 +864,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/binary_sensor.aurora/'
|
||||
class='option-card binary-sensor added_in_current_version'
|
||||
class='option-card binary-sensor added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -846,7 +910,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/light.avion/'
|
||||
class='option-card light added_two_versions_ago'
|
||||
class='option-card light'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -958,7 +1022,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/binary_sensor.bbb_gpio/'
|
||||
class='option-card binary-sensor added_two_versions_ago'
|
||||
class='option-card binary-sensor'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -1055,6 +1119,70 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/blink/'
|
||||
class='option-card hub added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/blink.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Blink</div>
|
||||
<div class='category'>Hub</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/binary_sensor.blink/'
|
||||
class='option-card binary-sensor added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/blink.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Blink Binary Sensor</div>
|
||||
<div class='category'>Binary Sensor</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/camera.blink/'
|
||||
class='option-card camera added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/blink.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Blink Camera</div>
|
||||
<div class='category'>Camera</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/sensor.blink/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/blink.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Blink Sensor</div>
|
||||
<div class='category'>Sensor</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/light.blinksticklight/'
|
||||
class='option-card light'
|
||||
style='display: none'>
|
||||
|
@ -1247,6 +1375,20 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/sensor.modem_callerid/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Caller ID Sensor</div>
|
||||
<div class='category'>Sensor</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1267,8 +1409,24 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/notify.ciscospark/'
|
||||
class='option-card notifications added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/ciscospark.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Cisco Spark</div>
|
||||
<div class='category'>Notifications</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/media_player.clementine/'
|
||||
class='option-card media-player added_in_current_version'
|
||||
class='option-card media-player added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -1301,6 +1459,22 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/sensor.comed_hourly_pricing/'
|
||||
class='option-card energy added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/comed.jpg'>
|
||||
|
||||
</div>
|
||||
<div class='title'>ComEd Hourly Pricing</div>
|
||||
<div class='category'>Energy</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/cover.command_line/'
|
||||
class='option-card cover'
|
||||
style='display: none'>
|
||||
|
@ -1413,6 +1587,22 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/config/'
|
||||
class='option-card other added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/home-assistant.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Config</div>
|
||||
<div class='category'>Other</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/configurator/'
|
||||
class='option-card other'
|
||||
style='display: none'>
|
||||
|
@ -1511,6 +1701,20 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/sensor.dnsip/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
</div>
|
||||
<div class='title'>DNS IP</div>
|
||||
<div class='category'>Sensor</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/sensor.dsmr/'
|
||||
class='option-card energy'
|
||||
style='display: none'>
|
||||
|
@ -1560,7 +1764,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/light.decora/'
|
||||
class='option-card light added_two_versions_ago'
|
||||
class='option-card light'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -1836,7 +2040,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.ebox/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -2300,7 +2504,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.fedex/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -2332,7 +2536,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.fido/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -2539,6 +2743,20 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/media_player.frontier_silicon/'
|
||||
class='option-card media-player added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Frontier Silicon Internet Radios</div>
|
||||
<div class='category'>Media Player</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/notify.gntp/'
|
||||
class='option-card notifications'
|
||||
style='display: none'>
|
||||
|
@ -2778,7 +2996,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/media_player.gstreamer/'
|
||||
class='option-card media-player added_in_current_version'
|
||||
class='option-card media-player added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -2984,7 +3202,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.history_stats/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -3000,7 +3218,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/ha/'
|
||||
class='option-card other added_in_current_version'
|
||||
class='option-card other added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -3994,7 +4212,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/device_tracker.linksys_ap/'
|
||||
class='option-card presence-detection added_two_versions_ago'
|
||||
class='option-card presence-detection'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4010,7 +4228,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/media_player.openhome/'
|
||||
class='option-card media-player added_in_current_version'
|
||||
class='option-card media-player added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4228,7 +4446,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/lutron/'
|
||||
class='option-card hub added_two_versions_ago'
|
||||
class='option-card hub'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4516,7 +4734,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/notify.mailgun/'
|
||||
class='option-card notifications added_one_version_ago'
|
||||
class='option-card notifications added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4614,7 +4832,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/microsoft_face/'
|
||||
class='option-card hub added_two_versions_ago'
|
||||
class='option-card hub'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4630,7 +4848,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/image_processing.microsoft_face_detect/'
|
||||
class='option-card image-processing added_one_version_ago'
|
||||
class='option-card image-processing added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4646,7 +4864,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/image_processing.microsoft_face_identify/'
|
||||
class='option-card image-processing added_two_versions_ago'
|
||||
class='option-card image-processing'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4786,7 +5004,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.moon/'
|
||||
class='option-card weather added_one_version_ago'
|
||||
class='option-card weather added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4818,7 +5036,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/cover.myq/'
|
||||
class='option-card cover added_in_current_version'
|
||||
class='option-card cover added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -4882,7 +5100,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/device_tracker.mysensors/'
|
||||
class='option-card presence-detection added_one_version_ago'
|
||||
class='option-card presence-detection added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -5428,7 +5646,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/lock.nuki/'
|
||||
class='option-card lock added_one_version_ago'
|
||||
class='option-card lock added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -5604,7 +5822,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.openevse/'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
class='option-card sensor added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -5620,7 +5838,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/climate.oem/'
|
||||
class='option-card climate added_in_current_version'
|
||||
class='option-card climate added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -5700,7 +5918,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/media_player.liveboxplaytv/'
|
||||
class='option-card media-player added_one_version_ago'
|
||||
class='option-card media-player added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -5940,7 +6158,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/light.piglow/'
|
||||
class='option-card light added_two_versions_ago'
|
||||
class='option-card light'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -6068,7 +6286,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.pocketcasts/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -6244,7 +6462,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/notify.pushsafer/'
|
||||
class='option-card notifications added_in_current_version'
|
||||
class='option-card notifications added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -6260,7 +6478,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.qnap/'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
class='option-card sensor added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -6630,7 +6848,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/rflink/'
|
||||
class='option-card hub added_one_version_ago'
|
||||
class='option-card hub added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -6646,7 +6864,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/light.rflink/'
|
||||
class='option-card light added_one_version_ago'
|
||||
class='option-card light added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -6662,7 +6880,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.rflink/'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
class='option-card sensor added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -6678,7 +6896,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/switch.rflink/'
|
||||
class='option-card switch added_one_version_ago'
|
||||
class='option-card switch added_two_versions_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -6693,6 +6911,22 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/sensor.ring/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/ring.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Ring</div>
|
||||
<div class='category'>Sensor</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/media_player.roku/'
|
||||
class='option-card media-player'
|
||||
style='display: none'>
|
||||
|
@ -7020,7 +7254,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/device_tracker.sky_hub/'
|
||||
class='option-card presence-detection added_two_versions_ago'
|
||||
class='option-card presence-detection'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -7036,7 +7270,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.skybeacon/'
|
||||
class='option-card diy added_two_versions_ago'
|
||||
class='option-card diy'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -7498,7 +7732,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/device_tracker.tado/'
|
||||
class='option-card presence-detection added_two_versions_ago'
|
||||
class='option-card presence-detection'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -7530,7 +7764,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/telegram_webhooks/'
|
||||
class='option-card notifications added_in_current_version'
|
||||
class='option-card notifications added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -7930,7 +8164,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/notify.twilio_call/'
|
||||
class='option-card notifications added_two_versions_ago'
|
||||
class='option-card notifications'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -8010,7 +8244,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.ups/'
|
||||
class='option-card sensor added_in_current_version'
|
||||
class='option-card sensor added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -8442,7 +8676,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.wsdot/'
|
||||
class='option-card transport added_two_versions_ago'
|
||||
class='option-card transport'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -8508,7 +8742,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/alarm_control_panel.wink/'
|
||||
class='option-card alarm added_two_versions_ago'
|
||||
class='option-card alarm'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -8811,6 +9045,20 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/light.yeelightsunflower/'
|
||||
class='option-card light added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
</div>
|
||||
<div class='title'>Yeelight Sunflower Bulb</div>
|
||||
<div class='category'>Light</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/light.yeelight/'
|
||||
class='option-card light'
|
||||
style='display: none'>
|
||||
|
@ -8971,8 +9219,24 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/weather.zamg/'
|
||||
class='option-card weather added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/zamg.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>ZAMG Weather</div>
|
||||
<div class='category'>Weather</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/zabbix/'
|
||||
class='option-card system-monitor added_two_versions_ago'
|
||||
class='option-card system-monitor'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -8988,7 +9252,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/sensor.zabbix/'
|
||||
class='option-card system-monitor added_two_versions_ago'
|
||||
class='option-card system-monitor'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -9148,7 +9412,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/camera.zoneminder/'
|
||||
class='option-card camera added_in_current_version'
|
||||
class='option-card camera added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
@ -9257,6 +9521,22 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
|
||||
<a href='/components/maxcube/'
|
||||
class='option-card diy added_in_current_version'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
<img src='/images/supported_brands/maxcube.png'>
|
||||
|
||||
</div>
|
||||
<div class='title'>eQ-3 MAX! Cube</div>
|
||||
<div class='category'>DIY</div>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href='/components/ecobee/'
|
||||
class='option-card hub featured'
|
||||
>
|
||||
|
@ -9290,7 +9570,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
|
||||
|
||||
<a href='/components/remote.itach/'
|
||||
class='option-card remote added_in_current_version'
|
||||
class='option-card remote added_one_version_ago'
|
||||
style='display: none'>
|
||||
<div class='img-container'>
|
||||
|
||||
|
|
|
@ -149,9 +149,15 @@ This component has been disabled due to a complaint by Insteon. It will be enabl
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -168,9 +168,15 @@
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -198,9 +198,15 @@ default is not correct.</p>
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -123,6 +123,9 @@
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -256,9 +256,15 @@ The ISY994 controller is manufactured by <a href="https://www.universal-devices.
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -195,9 +195,15 @@
|
|||
<li>
|
||||
<a href='/components/apcupsd/'>APCUPSd</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wemo/'>Belkin WeMo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/blink/'>Blink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/bloomsky/'>BloomSky</a>
|
||||
</li>
|
||||
|
|
|
@ -222,6 +222,9 @@ When the keyboard reconnects, an event <code class="highlighter-rouge">keyboard_
|
|||
<li>
|
||||
<a href='/components/browser/'>Browser</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/config/'>Config</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/configurator/'>Configurator</a>
|
||||
</li>
|
||||
|
|
|
@ -197,6 +197,9 @@
|
|||
<li>
|
||||
<a href='/components/zigbee/'>ZigBee</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/maxcube/'>eQ-3 MAX! Cube</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -241,6 +241,9 @@
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
|
@ -228,6 +228,9 @@
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
|
@ -242,6 +242,9 @@
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
|
@ -246,6 +246,9 @@
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
|
@ -373,6 +373,9 @@ The component defaults to rgbw. If your device has a separate white channel, you
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
|
@ -239,6 +239,9 @@
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
|
@ -305,6 +305,9 @@ Name. Use the values of Room name and Scene name that you see in the app. You ca
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
|
@ -229,6 +229,9 @@
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
|
@ -221,6 +221,9 @@
|
|||
<li>
|
||||
<a href='/components/light.x10/'>X10</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelightsunflower/'>Yeelight Sunflower Bulb</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.yeelight/'>Yeelight Wifi Bulb</a>
|
||||
</li>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue