Site updated at 2017-06-04 03:20:03 UTC
This commit is contained in:
parent
c30aec0820
commit
63a8408336
318 changed files with 2842 additions and 178 deletions
|
@ -143,6 +143,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -147,6 +147,9 @@
|
|||
<li>
|
||||
Android IP Webcam
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -112,6 +112,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
309
components/arlo/index.html
Normal file
309
components/arlo/index.html
Normal file
|
@ -0,0 +1,309 @@
|
|||
<!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>Arlo - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions on how to integrate your Netgear Arlo cameras within Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/arlo/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Arlo">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/arlo/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions on how to integrate your Netgear Arlo 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="Arlo">
|
||||
<meta name="twitter:description" content="Instructions on how to integrate your Netgear Arlo 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">
|
||||
Arlo
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>The <code class="highlighter-rouge">arlo</code> implementation allows you to integrate your <a href="https://arlo.netgear.com/">Arlo</a> devices in Home Assistant.</p>
|
||||
<p>To enable device linked in your <a href="https://arlo.netgear.com/">Arlo</a> account, 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">arlo</span><span class="pi">:</span>
|
||||
<span class="s">username</span><span class="pi">:</span> <span class="s">you@example.com</span>
|
||||
<span class="s">password</span><span class="pi">:</span> <span class="s">secret</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
<p>Configuration variables:</p>
|
||||
<ul>
|
||||
<li><strong>username</strong> (<em>Required</em>): The username for accessing your Arlo account.</li>
|
||||
<li><strong>password</strong> (<em>Required</em>): The password for accessing your Arlo account.</li>
|
||||
</ul>
|
||||
<p>It is recommended to create a dedicated user on Arlo website to be used within Home Assistant and then share your Arlo cameras.</p>
|
||||
<p>Finish its configuration by visiting the <a href="/components/sensor.arlo/">Arlo sensor page</a> or <a href="/components/camera.arlo/">Arlo camera page</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/arlo.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/arlo.png' />
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.46
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/camera.arlo/'>
|
||||
Arlo Camera
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.arlo/'>
|
||||
Arlo 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/alarmdecoder/'>AlarmDecoder Alarm</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
Arlo
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</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>
|
||||
<li>
|
||||
<a href='/components/digital_ocean/'>Digital Ocean</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</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/tradfri/'>IKEA Trådfri (Tradfri)</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/kira/'>Kira</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/litejet/'>LiteJet</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/lutron/'>Lutron</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/lutron_caseta/'>Lutron Caseta</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/opencv/'>OpenCV</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/pilight/'>Pilight</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/qwikswitch/'>QwikSwitch QSUSB Hub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/rflink/'>RFLink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/rfxtrx/'>RFXtrx</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/ring/'>Ring</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/scsgate/'>SCSGate</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sleepiq/'>SleepIQ</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/tado/'>Tado</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/telegram_bot/'>Telegram chatbot</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/tellstick/'>TellStick</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/tellduslive/'>Telldus Live</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/twilio/'>Twilio</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/vera/'>Vera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/verisure/'>Verisure</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/volvooncall/'>Volvo On Call</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/wink/'>Wink</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/zwave/'>Z-Wave</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/zha/'>Zigbee Home Automation</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> (no support!).<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>
|
|
@ -172,6 +172,9 @@ Any specific levels for triggers needs to be configured on the device.
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
Axis
|
||||
</li>
|
||||
|
|
|
@ -164,6 +164,9 @@
|
|||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/light.template/'>
|
||||
Template Light
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.template/'>
|
||||
Template Sensor
|
||||
</a></li>
|
||||
|
|
|
@ -90,7 +90,7 @@ If you use the sensor for Canada (<code class="highlighter-rouge">CA</code>) wit
|
|||
<span class="s">alias</span><span class="pi">:</span> <span class="s">Turn on heater on workdays</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s1">'</span><span class="s">08:00:00'</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s1">'</span><span class="s">08:00:00'</span>
|
||||
<span class="s">condition</span><span class="pi">:</span>
|
||||
<span class="s">condition</span><span class="pi">:</span> <span class="s">state</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s1">'</span><span class="s">binary_sensor.workday_sensor'</span>
|
||||
|
|
|
@ -98,6 +98,9 @@
|
|||
<li><a href='/components/cover.zwave/'>
|
||||
Z-Wave Cover
|
||||
</a></li>
|
||||
<li><a href='/components/fan.zwave/'>
|
||||
Z-Wave Fan
|
||||
</a></li>
|
||||
<li><a href='/components/light.zwave/'>
|
||||
Z-Wave Light
|
||||
</a></li>
|
||||
|
|
|
@ -160,6 +160,9 @@ There are three services availiabe for the blink platform:</p>
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -119,6 +119,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -121,6 +121,9 @@
|
|||
<li>
|
||||
Amcrest IP Camera
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
210
components/camera.arlo/index.html
Normal file
210
components/camera.arlo/index.html
Normal file
|
@ -0,0 +1,210 @@
|
|||
<!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>Arlo Camera - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions how to integrate your Netgear Arlo cameras within Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/camera.arlo/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Arlo Camera">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/camera.arlo/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions how to integrate your Netgear Arlo 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="Arlo Camera">
|
||||
<meta name="twitter:description" content="Instructions how to integrate your Netgear Arlo 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">
|
||||
Arlo Camera
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>To get your <a href="https://arlo.netgear.com/">Arlo</a> sensors working within Home Assistant, please follow the instructions for the general <a href="/components/arlo">Arlo component</a>.</p>
|
||||
<p>This component is not yet able to live stream from your Arlo camera, but it will be able to playback the last video capture.</p>
|
||||
<p>Once you have enabled the <a href="/components/arlo">Arlo component</a>, add the following to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
|
||||
<span class="s">camera</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">arlo</span>
|
||||
<span class="s">ffmpeg_arguments</span><span class="pi">:</span> <span class="s1">'</span><span class="s">-pred</span><span class="nv"> </span><span class="s">1</span><span class="nv"> </span><span class="s">-q:v</span><span class="nv"> </span><span class="s">2'</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
<p>Configuration variables:</p>
|
||||
<ul>
|
||||
<li><strong>ffmpeg_arguments</strong>: (<em>Optional</em>): Extra options to pass to ffmpeg, e.g. image quality or video filter options.</li>
|
||||
</ul>
|
||||
<p><strong>Note:</strong> To be able to playback the last capture, it is required to install the <code class="highlighter-rouge">ffmpeg</code> component. Make sure to follow the steps mentioned at <a href="https://home-assistant.io/components/ffmpeg/">FFMPEG</a> documentation.</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.arlo.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/arlo.png' />
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.46
|
||||
</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/arlo/'>
|
||||
Arlo
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.arlo/'>
|
||||
Arlo 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>
|
||||
Arlo Camera
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.blink/'>Blink Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.dispatcher/'>Dispatcher IP 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/camera.mqtt/'>MQTT Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/ifttt.manything/'>ManyThing</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.neato/'>Neato Camera</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> (no support!).<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>
|
|
@ -101,6 +101,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
Axis Camera
|
||||
</li>
|
||||
|
|
|
@ -105,6 +105,9 @@ To get your Blink cameras working with Home Assistant, follow the instructions f
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -109,6 +109,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -113,6 +113,9 @@ This platform is meant for developers only.
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -113,6 +113,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -108,6 +108,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.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -115,6 +115,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -108,6 +108,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.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -108,6 +108,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.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -140,6 +140,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -105,6 +105,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -109,6 +109,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.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -134,6 +134,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -111,6 +111,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -122,6 +122,9 @@ Most users will need to set <code class="highlighter-rouge">verify_ssl</code> to
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -104,6 +104,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -110,6 +110,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.amcrest/'>Amcrest IP Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -112,6 +112,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.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -80,6 +80,9 @@
|
|||
<li><a href='/components/camera.amcrest/'>
|
||||
Amcrest IP Camera
|
||||
</a></li>
|
||||
<li><a href='/components/camera.arlo/'>
|
||||
Arlo Camera
|
||||
</a></li>
|
||||
<li><a href='/components/camera.axis/'>
|
||||
Axis Camera
|
||||
</a></li>
|
||||
|
|
|
@ -87,7 +87,7 @@ If the thermostat support different operating modes, you will get one thermostat
|
|||
<span class="pi">-</span> <span class="s">alias</span><span class="pi">:</span> <span class="s">Turn on Heater at 8pm</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">20:00:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">20:00:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_operation_mode</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">climate.remotec_zxt120_heating_1_id</span>
|
||||
|
@ -104,7 +104,7 @@ If the thermostat support different operating modes, you will get one thermostat
|
|||
<span class="pi">-</span> <span class="s">alias</span><span class="pi">:</span> <span class="s">Turn off Heater at 9pm</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">21:00:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">21:00:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_operation_mode</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">climate.remotec_zxt120_heating_1_id</span>
|
||||
|
@ -149,6 +149,9 @@ If the thermostat support different operating modes, you will get one thermostat
|
|||
<li><a href='/components/cover.zwave/'>
|
||||
Z-Wave Cover
|
||||
</a></li>
|
||||
<li><a href='/components/fan.zwave/'>
|
||||
Z-Wave Fan
|
||||
</a></li>
|
||||
<li><a href='/components/light.zwave/'>
|
||||
Z-Wave Light
|
||||
</a></li>
|
||||
|
|
|
@ -106,7 +106,7 @@ Not all climate services may be available for your platform. Be sure to check th
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_aux_heat</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
@ -143,7 +143,7 @@ reflecting a situation where the climate device is set to save energy. This may
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_away_mode</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
@ -181,7 +181,7 @@ temporary target temperature. The particular modes available depend on the clima
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_hold_mode</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
@ -231,7 +231,7 @@ temporary target temperature. The particular modes available depend on the clima
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_temperature</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
@ -267,7 +267,7 @@ temporary target temperature. The particular modes available depend on the clima
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_humidity</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
@ -302,7 +302,7 @@ temporary target temperature. The particular modes available depend on the clima
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_fan_mode</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
@ -337,7 +337,7 @@ temporary target temperature. The particular modes available depend on the clima
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_operation_mode</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
@ -372,7 +372,7 @@ temporary target temperature. The particular modes available depend on the clima
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">climate.set_swing_mode</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
|
|
@ -96,6 +96,9 @@
|
|||
<li><a href='/components/climate.zwave/'>
|
||||
Z-Wave Climate
|
||||
</a></li>
|
||||
<li><a href='/components/fan.zwave/'>
|
||||
Z-Wave Fan
|
||||
</a></li>
|
||||
<li><a href='/components/light.zwave/'>
|
||||
Z-Wave Light
|
||||
</a></li>
|
||||
|
|
|
@ -119,7 +119,7 @@
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">cover.set_cover_position</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
@ -154,7 +154,7 @@
|
|||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">time</span>
|
||||
<span class="s">after</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">at</span><span class="pi">:</span> <span class="s2">"</span><span class="s">07:15:00"</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">cover.set_cover_tilt_position</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
|
|
|
@ -125,7 +125,6 @@
|
|||
<span class="s">name</span><span class="pi">:</span> <span class="s">Friendly Name</span>
|
||||
<span class="s">mac</span><span class="pi">:</span> <span class="s">EA:AA:55:E7:C6:94</span>
|
||||
<span class="s">picture</span><span class="pi">:</span> <span class="s">https://home-assistant.io/images/favicon-192x192.png</span>
|
||||
<span class="s">gravatar</span><span class="pi">:</span> <span class="s">test@example.com</span>
|
||||
<span class="s">track</span><span class="pi">:</span> <span class="s">yes</span>
|
||||
<span class="s">hide_if_away</span><span class="pi">:</span> <span class="s">no</span>
|
||||
</code></pre>
|
||||
|
@ -154,6 +153,11 @@
|
|||
<td>None</td>
|
||||
<td>A picture that you can use to easily identify the person or device. You can also save the image file in a folder “www” in the same location (can be obtained from developer tools) where you have your configuration.yaml file and just use <code class="highlighter-rouge">picture: /local/favicon-192x192.png</code>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code class="highlighter-rouge">icon</code></td>
|
||||
<td>mdi:account</td>
|
||||
<td>An icon for this device (use as an alternative to <code class="highlighter-rouge">picture</code>).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code class="highlighter-rouge">gravatar</code></td>
|
||||
<td>None</td>
|
||||
|
@ -161,7 +165,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td><code class="highlighter-rouge">track</code></td>
|
||||
<td>False</td>
|
||||
<td>[uses platform setting]</td>
|
||||
<td>If <code class="highlighter-rouge">yes</code>/<code class="highlighter-rouge">on</code>/<code class="highlighter-rouge">true</code> then the device will be tracked. Otherwise its location and state will not update</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -116,6 +116,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -147,6 +147,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -170,6 +170,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -193,6 +193,9 @@ The virtual bridge has the ability to turn entities on or off, or change the bri
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -134,6 +134,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -122,6 +122,9 @@
|
|||
<li>
|
||||
<a href='/components/fan.wink/'>Wink Fan</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/fan.zwave/'>Z-Wave Fan</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -202,6 +202,9 @@ Make sure that your topic is an exact match. <code class="highlighter-rouge">som
|
|||
<li>
|
||||
<a href='/components/fan.wink/'>Wink Fan</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/fan.zwave/'>Z-Wave Fan</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -138,6 +138,9 @@ The above devices are confimed to work, but others may work as well.
|
|||
<li>
|
||||
Wink Fan
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/fan.zwave/'>Z-Wave Fan</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
|
161
components/fan.zwave/index.html
Normal file
161
components/fan.zwave/index.html
Normal file
|
@ -0,0 +1,161 @@
|
|||
<!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>Z-Wave Fan - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions how to setup the Z-Wave Fans within Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/fan.zwave/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Z-Wave Fan">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/fan.zwave/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions how to setup the Z-Wave Fans 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="Z-Wave Fan">
|
||||
<meta name="twitter:description" content="Instructions how to setup the Z-Wave Fans 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">
|
||||
Z-Wave Fan
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>To get your Z-Wave fans working with Home Assistant, follow the instructions for the general <a href="/components/zwave/">Z-Wave 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/fan.zwave.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/z-wave.png' />
|
||||
</div>
|
||||
<div class='section'>
|
||||
This is a platform for
|
||||
<a href='/components/fan/'>the Fan component</a>.
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/zwave/'>
|
||||
Z-Wave
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.zwave/'>
|
||||
Z-Wave Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/climate.zwave/'>
|
||||
Z-Wave Climate
|
||||
</a></li>
|
||||
<li><a href='/components/cover.zwave/'>
|
||||
Z-Wave Cover
|
||||
</a></li>
|
||||
<li><a href='/components/light.zwave/'>
|
||||
Z-Wave Light
|
||||
</a></li>
|
||||
<li><a href='/components/lock.zwave/'>
|
||||
Z-Wave Lock
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.zwave/'>
|
||||
Z-Wave Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/switch.zwave/'>
|
||||
Z-Wave Switch
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Fan</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/fan.isy994/'>ISY994 Fan</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/fan.mqtt/'>MQTT Fan</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/fan.wink/'>Wink Fan</a>
|
||||
</li>
|
||||
<li>
|
||||
Z-Wave Fan
|
||||
</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> (no support!).<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>
|
|
@ -92,6 +92,9 @@
|
|||
<li><a href='/components/fan.wink/'>
|
||||
Wink Fan
|
||||
</a></li>
|
||||
<li><a href='/components/fan.zwave/'>
|
||||
Z-Wave Fan
|
||||
</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -162,6 +162,9 @@ Press <span class="o">[</span>q] to stop, <span class="o">[</span>?] <span class
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -282,6 +282,9 @@ Using this service provides you direct access to the setValue-method of the prim
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -151,6 +151,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.arlo/'>Arlo Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.axis/'>Axis Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -72,7 +72,7 @@ Support for these components is provided by the Home Assistant community.
|
|||
<div class="grid">
|
||||
<div class="grid__item one-sixth lap-one-whole palm-one-whole">
|
||||
<div class="filter-button-group">
|
||||
<a href='#all' class="btn">All (684)</a>
|
||||
<a href='#all' class="btn">All (690)</a>
|
||||
<a href='#featured' class="btn featured">Featured</a>
|
||||
<a href='#version/0.45' class="btn added_in_current_version">Added in 0.45 (16)</a>
|
||||
<a href='#version/0.44' class="btn added_one_version_ago">Added in 0.44 (20)</a>
|
||||
|
@ -81,20 +81,20 @@ Support for these components is provided by the Home Assistant community.
|
|||
<a href='#automation' class="btn">Automation (15)</a>
|
||||
<a href='#binary-sensor' class="btn">Binary Sensor (50)</a>
|
||||
<a href='#calendar' class="btn">Calendar (3)</a>
|
||||
<a href='#camera' class="btn">Camera (20)</a>
|
||||
<a href='#camera' class="btn">Camera (21)</a>
|
||||
<a href='#climate' class="btn">Climate (20)</a>
|
||||
<a href='#cover' class="btn">Cover (16)</a>
|
||||
<a href='#diy' class="btn">DIY (19)</a>
|
||||
<a href='#downloading' class="btn">Downloading (5)</a>
|
||||
<a href='#energy' class="btn">Energy (11)</a>
|
||||
<a href='#fan' class="btn">Fan (3)</a>
|
||||
<a href='#fan' class="btn">Fan (4)</a>
|
||||
<a href='#finance' class="btn">Finance (6)</a>
|
||||
<a href='#front-end' class="btn">Front end (4)</a>
|
||||
<a href='#health' class="btn">Health (2)</a>
|
||||
<a href='#history' class="btn">History (12)</a>
|
||||
<a href='#hub' class="btn">Hub (54)</a>
|
||||
<a href='#hub' class="btn">Hub (55)</a>
|
||||
<a href='#image-processing' class="btn">Image Processing (8)</a>
|
||||
<a href='#light' class="btn">Light (44)</a>
|
||||
<a href='#light' class="btn">Light (45)</a>
|
||||
<a href='#lock' class="btn">Lock (8)</a>
|
||||
<a href='#media-player' class="btn">Media Player (43)</a>
|
||||
<a href='#notifications' class="btn">Notifications (43)</a>
|
||||
|
@ -102,9 +102,9 @@ Support for these components is provided by the Home Assistant community.
|
|||
<a href='#presence-detection' class="btn">Presence Detection (38)</a>
|
||||
<a href='#remote' class="btn">Remote (3)</a>
|
||||
<a href='#scene' class="btn">Scene (3)</a>
|
||||
<a href='#sensor' class="btn">Sensor (78)</a>
|
||||
<a href='#sensor' class="btn">Sensor (79)</a>
|
||||
<a href='#social' class="btn">Social (5)</a>
|
||||
<a href='#switch' class="btn">Switch (56)</a>
|
||||
<a href='#switch' class="btn">Switch (57)</a>
|
||||
<a href='#system-monitor' class="btn">System Monitor (23)</a>
|
||||
<a href='#telegram-chatbot' class="btn">Telegram chatbot (2)</a>
|
||||
<a href='#text-to-speech' class="btn">Text-to-speech (6)</a>
|
||||
|
@ -174,6 +174,9 @@ var allComponents = [
|
|||
{url:"/components/arduino/", title:"Arduino", cat:"diy", featured: true, v: "0.7", logo: "arduino.png"},
|
||||
{url:"/components/sensor.arduino/", title:"Arduino Sensor", cat:"diy", featured: false, v: "0.7", logo: "arduino.png"},
|
||||
{url:"/components/switch.arduino/", title:"Arduino Switch", cat:"diy", featured: false, v: "0.7", logo: "arduino.png"},
|
||||
{url:"/components/arlo/", title:"Arlo", cat:"hub", featured: false, v: "0.46", logo: "arlo.png"},
|
||||
{url:"/components/camera.arlo/", title:"Arlo Camera", cat:"camera", featured: false, v: "0.46", logo: "arlo.png"},
|
||||
{url:"/components/sensor.arlo/", title:"Arlo Sensor", cat:"sensor", featured: false, v: "0.46", logo: "arlo.png"},
|
||||
{url:"/components/device_tracker.aruba/", title:"Aruba", cat:"presence-detection", featured: false, v: "0.7", logo: "aruba.png"},
|
||||
{url:"/components/binary_sensor.aurora/", title:"Aurora sensor", cat:"binary-sensor", featured: false, v: "0.39", logo: "noaa.png"},
|
||||
{url:"/components/device_tracker.automatic/", title:"Automatic", cat:"presence-detection", featured: false, v: "0.28", logo: "automatic.png"},
|
||||
|
@ -595,6 +598,7 @@ var allComponents = [
|
|||
{url:"/components/sensor.rfxtrx/", title:"RFXtrx Sensor", cat:"sensor", featured: false, v: "0.0", logo: "rfxtrx.png"},
|
||||
{url:"/components/switch.rfxtrx/", title:"RFXtrx Switch", cat:"switch", featured: false, v: "0.7", logo: "rfxtrx.png"},
|
||||
{url:"/components/rss_feed_template/", title:"RSS feed template", cat:"front-end", featured: false, v: "0.44", logo: "home-assistant.png"},
|
||||
{url:"/components/switch.rachio/", title:"Rachio Switch", cat:"switch", featured: false, v: "0.46", logo: "rachio.png"},
|
||||
{url:"/components/climate.radiotherm/", title:"Radio Thermostat (3M Filtrete) Thermostat", cat:"climate", featured: false, v: "0.0", logo: "radiotherm.png"},
|
||||
{url:"/components/sensor.random/", title:"Random Sensor", cat:"sensor", featured: false, v: "0.32", logo: "home-assistant.png"},
|
||||
{url:"/components/rpi_gpio/", title:"Raspberry PI GPIO", cat:"diy", featured: false, v: "0.7", logo: "raspberry-pi.png"},
|
||||
|
@ -682,6 +686,7 @@ var allComponents = [
|
|||
{url:"/components/sensor.tellduslive/", title:"Telldus Live sensor", cat:"sensor", featured: false, v: "0.0", logo: "telldus.png"},
|
||||
{url:"/components/notify.telstra/", title:"Telstra", cat:"notifications", featured: false, v: "0.31", logo: "telstra.png"},
|
||||
{url:"/components/binary_sensor.template/", title:"Template Binary Sensor", cat:"binary-sensor", featured: false, v: "0.0", logo: "home-assistant.png"},
|
||||
{url:"/components/light.template/", title:"Template Light", cat:"light", featured: false, v: "0.46", logo: "home-assistant.png"},
|
||||
{url:"/components/sensor.template/", title:"Template Sensor", cat:"sensor", featured: false, v: "0.12", logo: "home-assistant.png"},
|
||||
{url:"/components/switch.template/", title:"Template switch", cat:"switch", featured: false, v: "0.13", logo: "home-assistant.png"},
|
||||
{url:"/components/thingspeak/", title:"ThingSpeak", cat:"history", featured: false, v: "0.32", logo: "thingspeak.png"},
|
||||
|
@ -763,6 +768,7 @@ var allComponents = [
|
|||
{url:"/components/binary_sensor.zwave/", title:"Z-Wave Binary Sensor", cat:"binary-sensor", featured: false, v: "0.14", logo: "z-wave.png"},
|
||||
{url:"/components/climate.zwave/", title:"Z-Wave Climate", cat:"climate", featured: false, v: "0.17", logo: "z-wave.png"},
|
||||
{url:"/components/cover.zwave/", title:"Z-Wave Cover", cat:"cover", featured: false, v: "0.23", logo: "z-wave.png"},
|
||||
{url:"/components/fan.zwave/", title:"Z-Wave Fan", cat:"fan", featured: false, v: "0.0", logo: "z-wave.png"},
|
||||
{url:"/components/light.zwave/", title:"Z-Wave Light", cat:"light", featured: false, v: "0.0", logo: "z-wave.png"},
|
||||
{url:"/components/lock.zwave/", title:"Z-Wave Lock", cat:"lock", featured: false, v: "0.19", logo: "z-wave.png"},
|
||||
{url:"/components/sensor.zwave/", title:"Z-Wave Sensor", cat:"sensor", featured: false, v: "0.0", logo: "z-wave.png"},
|
||||
|
|
|
@ -117,6 +117,9 @@ This component has been disabled due to a complaint by Insteon. It will be enabl
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -135,6 +135,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -162,6 +162,9 @@ default is not correct.</p>
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -213,6 +213,9 @@ The ISY994 controller is manufactured by <a href="https://www.universal-devices.
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -162,6 +162,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -172,6 +172,9 @@
|
|||
<li>
|
||||
<a href='/components/android_ip_webcam/'>Android IP Webcam</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/arlo/'>Arlo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/axis/'>Axis</a>
|
||||
</li>
|
||||
|
|
|
@ -209,6 +209,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -198,6 +198,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -194,6 +194,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -211,6 +211,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -216,6 +216,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -321,6 +321,9 @@ The component defaults to rgbw. If your device has a separate white channel, you
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -212,6 +212,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -271,6 +271,9 @@ Name. Use the values of Room name and Scene name that you see in the app. You ca
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -199,6 +199,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -194,6 +194,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -208,6 +208,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -202,6 +202,9 @@ component.</p>
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -212,6 +212,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -394,6 +394,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -259,6 +259,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -198,6 +198,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -190,6 +190,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -196,6 +196,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -372,6 +372,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -345,6 +345,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -335,6 +335,9 @@ It is format-agnostic so you can use any data format you want (i.e. string, JSON
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -464,6 +464,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -229,6 +229,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -196,6 +196,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -191,6 +191,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -200,6 +200,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -273,6 +273,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -239,6 +239,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -239,6 +239,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -213,6 +213,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -201,6 +201,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -205,6 +205,9 @@
|
|||
<li>
|
||||
TellStick Light
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
358
components/light.template/index.html
Normal file
358
components/light.template/index.html
Normal file
|
@ -0,0 +1,358 @@
|
|||
<!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>Template Light - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions how to integrate Template lights into Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/light.template/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Template Light">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/light.template/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions how to integrate Template lights into 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="Template Light">
|
||||
<meta name="twitter:description" content="Instructions how to integrate Template lights into 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">
|
||||
Template Light
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>The <code class="highlighter-rouge">template</code> platform creates lights that combine components and provides the ability to run scripts or invoke services for each of the on, off, and brightness commands of a light.</p>
|
||||
<p>To enable Template lights in your installation, 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">light</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">template</span>
|
||||
<span class="s">lights</span><span class="pi">:</span>
|
||||
<span class="s">theater_lights</span><span class="pi">:</span>
|
||||
<span class="s">friendly_name</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Theater</span><span class="nv"> </span><span class="s">Lights"</span>
|
||||
<span class="s">value_template</span><span class="pi">:</span> <span class="s2">"</span><span class="s">{{is_state('sensor.theater_brightness.attributes.lux</span><span class="nv"> </span><span class="s">></span><span class="nv"> </span><span class="s">0'}}"</span>
|
||||
<span class="s">turn_on</span><span class="pi">:</span>
|
||||
<span class="s">service</span><span class="pi">:</span> <span class="s">script.theater_lights_on</span>
|
||||
<span class="s">turn_off</span><span class="pi">:</span>
|
||||
<span class="s">service</span><span class="pi">:</span> <span class="s">script.theater_lights_off</span>
|
||||
<span class="s">set_level</span><span class="pi">:</span>
|
||||
<span class="s">service</span><span class="pi">:</span> <span class="s">script.theater_lights_level</span>
|
||||
<span class="s">data_template</span><span class="pi">:</span>
|
||||
<span class="s">volume_level</span><span class="pi">:</span> <span class="s2">"</span><span class="s">{{brightness}}"</span>
|
||||
<span class="s">level_template</span><span class="pi">:</span> <span class="s2">"</span><span class="s">{{is_state('sensor.theater_brightness.attributes.lux'}}"</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
<p>Configuration variables:</p>
|
||||
<ul>
|
||||
<li><strong>lights</strong> array (<em>Required</em>): List of your lights.
|
||||
<ul>
|
||||
<li><strong>friendly_name</strong> (<em>Optional</em>): Name to use in the Frontend.</li>
|
||||
<li><strong>value_template</strong> (<em>Optional</em>): Defines a <a href="/topics/templating/">template</a> to get the state of the light. If not provided the component defaults to optimisitc state determination.</li>
|
||||
<li><strong>turn_on</strong> (<em>Required</em>): Defines an <a href="/getting-started/automation/">action</a> to run when the light is turned on.</li>
|
||||
<li><strong>turn_off</strong> (<em>Required</em>): Defines an <a href="/getting-started/automation/">action</a> to run when the light is turned off.</li>
|
||||
<li><strong>set_level</strong> (<em>Optional</em>): Defines an <a href="/getting-started/automation/">action</a> to run when the light is given a brightness command.</li>
|
||||
<li><strong>level_template</strong> (*Optional): Defines a <a href="/topics/templating/">template</a> to get the brightness of the light. If not provided the component defaults to optimisitc brightness determination.</li>
|
||||
<li><strong>entity_id</strong> (<em>Optional</em>): Add a list of entity IDs so the switch only reacts to state changes of these entities. This will reduce the number of times the light will try to update it’s state.</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<h2><a class="title-link" name="considerations" href="#considerations"></a> Considerations</h2>
|
||||
<p>If you are using the state of a platform that takes extra time to load, the template light may get an ‘unknown’ state during startup. This results in error messages in your log file until that platform has completed loading. If you use is_state() function in your template, you can avoid this situation. For example, you would replace ‘{{ states.switch.source.state }}’ with this equivalent that returns true/false and never gives an unknown result:
|
||||
‘{{ is_state(‘switch.source’, ‘on’) }}’</p>
|
||||
<h2><a class="title-link" name="examples" href="#examples"></a> Examples</h2>
|
||||
<p>In this section you will find some real life examples of how to use this light.</p>
|
||||
<h3><a class="title-link" name="theater-volume-control" href="#theater-volume-control"></a> Theater Volume Control</h3>
|
||||
<p>This example shows a light that is actually a home theater’s volume. This component gives you the flexibility to provide whatever you’d like to send as the payload to the consumer including any scale conversions you may need to make; the media_player component needs a floating point percentage value 0.0-1.0</p>
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">light</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">template</span>
|
||||
<span class="s">lights</span><span class="pi">:</span>
|
||||
<span class="s">theater_volume</span><span class="pi">:</span>
|
||||
<span class="s">friendly_name</span><span class="pi">:</span> <span class="s1">'</span><span class="s">Receiver</span><span class="nv"> </span><span class="s">Volume'</span>
|
||||
<span class="s">value_template</span><span class="pi">:</span> <span class="pi">>-</span>
|
||||
<span class="no"> </span>
|
||||
<span class="no">{%- if is_state("media_player.receiver", "on") -%}</span>
|
||||
<span class="no">{%- if states.media_player.receiver.attributes.is_volume_muted -%}</span>
|
||||
<span class="no">off</span>
|
||||
<span class="no">{%- else -%}</span>
|
||||
<span class="no">on</span>
|
||||
<span class="no">{%- endif -%}</span>
|
||||
<span class="no">{%- else -%}</span>
|
||||
<span class="no">off</span>
|
||||
<span class="no">{%- endif -%}</span>
|
||||
<span class="no"> </span>
|
||||
<span class="no">turn_on:</span>
|
||||
<span class="no">service: media_player.volume_mute</span>
|
||||
<span class="no">data:</span>
|
||||
<span class="no">entity_id: media_player.receiver</span>
|
||||
<span class="no">is_volume_muted: false</span>
|
||||
<span class="no">turn_off:</span>
|
||||
<span class="no">service: media_player.volume_mute</span>
|
||||
<span class="no">data:</span>
|
||||
<span class="no">entity_id: media_player.receiver</span>
|
||||
<span class="no">is_volume_muted: true</span>
|
||||
<span class="no">set_level:</span>
|
||||
<span class="no">service: media_player.volume_set</span>
|
||||
<span class="no">data:</span>
|
||||
<span class="no">entity_id: media_player.receiver</span>
|
||||
<span class="no">data_template:</span>
|
||||
<span class="no">volume_level: '{{((brightness / 255 * 100) | int)/100}}'</span>
|
||||
<span class="no">level_template: >-</span>
|
||||
<span class="no"> </span>
|
||||
<span class="no">{%- if is_state("media_player.receiver", "on") -%}</span>
|
||||
<span class="no">{{(255 * states.media_player.receiver.attributes.volume_level) | int}}</span>
|
||||
<span class="no">{%- else -%}</span>
|
||||
<span class="no">0</span>
|
||||
<span class="no">{%- endif -%}</span>
|
||||
<span class="no"> </span>
|
||||
</code></pre>
|
||||
</div>
|
||||
</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/light.template.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'>
|
||||
IoT class<sup><a href='/blog/2016/02/12/classifying-the-internet-of-things/#classifiers'><i class="icon-info-sign"></i></a></sup>: Local Push
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.46
|
||||
</div>
|
||||
<div class='section'>
|
||||
This is a platform for
|
||||
<a href='/components/light/'>the Lights component</a>.
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/binary_sensor.template/'>
|
||||
Template Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.template/'>
|
||||
Template Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/switch.template/'>
|
||||
Template switch
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Light</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/light.avion/'>Avi-on</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.wemo/'>Belkin WeMo Lights</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.blinksticklight/'>Blinkstick</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.blinkt/'>Blinkt!</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.decora/'>Decora</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.enocean/'>EnOcean Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.flux_led/'>Flux Led/MagicLight</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.homematic/'>Homematic Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.hyperion/'>Hyperion</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tradfri/'>IKEA Trådfri lights</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.isy994/'>ISY994 Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.insteon_local/'>Insteon (Local) Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.insteon_hub/'>Insteon Hub Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.insteon_plm/'>Insteon PLM Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.lifx/'>LIFX</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.limitlessled/'>LimitlessLED</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.litejet/'>LiteJet Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.lutron_caseta/'>Lutron Caseta Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.lutron/'>Lutron Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.mqtt_json/'>MQTT JSON Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.mqtt/'>MQTT Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.mqtt_template/'>MQTT Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.mysensors/'>MySensors Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.osramlightify/'>Osram Lightify</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.rpi_gpio_pwm/'>PWM LED</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.hue/'>Philips Hue</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.piglow/'>Piglow</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.qwikswitch/'>QwikSwitch Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.rflink/'>RFLink Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.rfxtrx/'>RFXtrx Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.scsgate/'>SCSGate Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.sensehat/'>Sense HAT Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
Template Light
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.vera/'>Vera Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.wink/'>Wink Light</a>
|
||||
</li>
|
||||
<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>
|
||||
<li>
|
||||
<a href='/components/light.zwave/'>Z-Wave Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.zengge/'>Zengge</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.zha/'>ZigBee Home Automation Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.zigbee/'>ZigBee Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.mystrom/'>myStrom WiFi Bulb</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> (no support!).<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>
|
|
@ -207,6 +207,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
Tikteck
|
||||
</li>
|
||||
|
|
|
@ -196,6 +196,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -216,6 +216,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -201,6 +201,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -228,6 +228,9 @@ The above devices are confimed to work, but others may work as well.
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -204,6 +204,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -219,6 +219,9 @@ This component is tested to work with models YLDP01YL, YLDP02YL and YLDP03YL. If
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -204,6 +204,9 @@ The Yeelight Sunflower hub supports SSDP discovery, but that has not been built
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -208,6 +208,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -201,6 +201,9 @@ component</a>.</p>
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</a>
|
||||
</li>
|
||||
|
|
|
@ -219,6 +219,9 @@
|
|||
<li>
|
||||
<a href='/components/light.tellstick/'>TellStick Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.template/'>Template Light</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/light.tikteck/'>Tikteck</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