Site updated at 2018-03-09 18:51:31 UTC
This commit is contained in:
parent
02f14eef9a
commit
779c204a2c
972 changed files with 14468 additions and 2257 deletions
|
@ -336,6 +336,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -519,6 +522,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -206,6 +206,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -389,6 +392,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -74,58 +74,8 @@
|
|||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>The <code class="highlighter-rouge">egardia</code> platform enables the ability to control an <a href="http://egardia.com/">Egardia</a>/<a href="http://woonveilig.nl">Woonveilig</a> control panel. These alarm panels are known under different brand names across the world, including Woonveilig in the Netherlands. This was tested on the GATE-01, GATE-02 and GATE-03 versions of the Egardia/Woonveilig platform.</p>
|
||||
<p>You will need to know the IP of your alarm panel on your local network. Test if you can login to the panel by browsing to the IP address and log in using your Egardia/Woonveilig account.</p>
|
||||
<p>To enable the integration with your alarm panel, add the following lines 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">alarm_control_panel</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">egardia</span>
|
||||
<span class="s">host</span><span class="pi">:</span> <span class="s">YOUR_HOST</span>
|
||||
<span class="s">username</span><span class="pi">:</span> <span class="s">YOUR_USERNAME</span>
|
||||
<span class="s">password</span><span class="pi">:</span> <span class="s">YOUR_PASSWORD</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
<p>Configuration variables:</p>
|
||||
<ul>
|
||||
<li><strong>host</strong> (<em>Required</em>): The local IP address of the Egardia/Woonveilig alarm panel.</li>
|
||||
<li><strong>username</strong> (<em>Required</em>): Username for the Egardia/Woonveilig account.</li>
|
||||
<li><strong>password</strong> (<em>Required</em>): Password for Egardia/Woonveilig account.</li>
|
||||
<li><strong>version</strong> (<em>Optional</em>): The version of the Egardia system. <code class="highlighter-rouge">GATE-01</code>, <code class="highlighter-rouge">GATE-02</code> and <code class="highlighter-rouge">GATE-03</code> are currently supported. Defaults to <code class="highlighter-rouge">GATE-01</code>.</li>
|
||||
<li><strong>port</strong> (<em>Optional</em>): The port of the alarm panel. Defaults to 80.</li>
|
||||
<li><strong>name</strong> (<em>Optional</em>): Name to use for the alarm panel. Defaults to <code class="highlighter-rouge">Egardia</code>.</li>
|
||||
<li><strong>report_server_enabled</strong> (<em>Optional</em>): Enable reporting by server. Defaults to <code class="highlighter-rouge">False</code>.</li>
|
||||
<li><strong>report_server_port</strong> (<em>Optional</em>): Port of the Egardia server. Defaults to 52010.</li>
|
||||
<li><strong>report_server_codes</strong> list (<em>Optional</em>): List of codes for the different states.</li>
|
||||
</ul>
|
||||
<p>Note that this basic configuration will only enable you to read the armed/armed away/disarmed status of your alarm and will <strong>not</strong> update the status if the alarm is triggered. This is because of how Egardia built their system. The alarm triggers normally go through their servers.
|
||||
You can change this, however, using the following procedure. This is a more advanced configuration.</p>
|
||||
<ol>
|
||||
<li>Log in into your alarm system’s control panel. You will need to access http://[IP of your control panel]. You know this already since you need it in the basic configuration from above. Log in to the control panel with your Egardia/Woonveilig username and password.</li>
|
||||
<li>Once logged in, go to <em>System Settings</em>, <em>Report</em> and change the Server Address for your primary server to the IP or hostname of your Home Assistant machine. You can leave the port number set to 52010 or change it to anything you like. <strong>Make sure to change the settings of the primary server otherwise the messages will not come through. Note that this will limit (or fully stop) the number of alarm messages you will get through Egardia’s / Woonveilig services.</strong> Maybe, that is just what you want. Make sure to save your settings by selecting ‘OK’.</li>
|
||||
<li>On your Home Assistant machine run <code class="highlighter-rouge">$ sudo python3 egardiaserver.py</code>. Refer to the <a href="https://github.com/jeroenterheerdt/python-egardia">python-egardia repository</a> for detailed documentation on parameters. This will receive status codes from your alarm control panel and display them. You will need the codes to include in your configuration.yaml. Make sure to change the status of your alarm to all states (disarm, arm, home) by all means possible (all users, remotes, web login, app) as well as trigger the alarm in all ways possible to get 100% coverage. <strong>Before triggering the alarm it might be good to disable the siren temporarily (can be done in Panel Settings).</strong></li>
|
||||
<li>Once you have the codes, update your <code class="highlighter-rouge">configuration.yaml</code>:
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code> <span class="c1"># Example configuration.yaml entry</span>
|
||||
<span class="s">alarm_control_panel</span><span class="pi">:</span>
|
||||
<span class="s"> - platform</span><span class="pi">:</span> <span class="s">egardia</span>
|
||||
<span class="s"> host</span><span class="pi">:</span> <span class="s">YOUR_HOST</span>
|
||||
<span class="s"> username</span><span class="pi">:</span> <span class="s">YOUR_USERNAME</span>
|
||||
<span class="s"> password</span><span class="pi">:</span> <span class="s">YOUR_PASSWORD</span>
|
||||
<span class="s">report_server_enabled</span><span class="pi">:</span> <span class="s">True</span>
|
||||
<span class="s">report_server_port</span><span class="pi">:</span> <span class="s">PORT_OF_EGARDIASERVER (optional, defaults to 52010)</span>
|
||||
<span class="s">report_server_codes</span><span class="pi">:</span>
|
||||
<span class="s">arm</span><span class="pi">:</span> <span class="s">XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX</span>
|
||||
<span class="s">disarm</span><span class="pi">:</span> <span class="s">XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX</span>
|
||||
<span class="s">home</span><span class="pi">:</span> <span class="s">XXXXXXXXXXXXXXXX</span>
|
||||
<span class="s">triggered</span><span class="pi">:</span> <span class="s">XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX, XXXXXXXXXXXXXXXX</span>
|
||||
<span class="s">ignore</span><span class="pi">:</span> <span class="s">XXXXXXXXXXXXXXXX</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
</li>
|
||||
</ol>
|
||||
<p>Note that for <em>triggered</em>, <em>arm</em> and <em>disarm</em> multiple codes can be entered since each sensor triggers with a different code and each user of the system has its own arm and disarm codes. Also note that your system will do regular system checks which will be reported as well. Since Home Assistant provides no way of handling them properly, you can enter those codes as <em>ignore</em> (again, multiple codes can be used here). The egardia component will ignore these codes and continue returning the old status if it receives any of the codes that are listed as ignore. This is useful for example when you have armed your alarm at night: normally a system check will occur at least once during the night and if that code is not specified anywhere Home Assistant will set the status of the alarm to its default, which is unarmed. This is in fact wrong. Listing the code as ignore changes this behavior and Home Assistant will continue to show the status the alarm is in (disarm, arm, home, triggered) even when system checks occur.</p>
|
||||
<ol>
|
||||
<li>Test your setup and enjoy. The component will update if the alarm status changes, including triggers. You can use this to build your own automations and send notifications as you wish. <em>Note</em>: previous versions required a separate egardiaserver to be set up. This is no longer necessary and corresponding system services can be removed (using systemctl).</li>
|
||||
</ol>
|
||||
<p>The <code class="highlighter-rouge">egardia</code> platform allows you to integrate your <a href="http://www.egardia.com">Egardia</a>/<a href="http://www.woonveilig.nl">Woonveilig</a> alarm control panel in Home Assistant.
|
||||
You will need to set up your <a href="/components/egardia/">Egardia hub</a>.</p>
|
||||
</article>
|
||||
</div>
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
|
@ -145,6 +95,17 @@ You can change this, however, using the following procedure. This is a more adva
|
|||
<div class='section'>
|
||||
This is a platform for
|
||||
<a href='/components/alarm_control_panel/'>the Alarm Control Panels component</a>.
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/egardia/'>
|
||||
Egardia
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.egardia/'>
|
||||
Egardia Binary Sensor
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Alarm</h1>
|
||||
|
|
|
@ -201,6 +201,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -384,6 +387,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -205,6 +205,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -388,6 +391,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -240,6 +240,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -423,6 +426,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -168,6 +168,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -351,6 +354,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -262,6 +262,9 @@ Turning the device on/off in the user interface will <em>not</em> turn the physi
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -445,6 +448,9 @@ Turning the device on/off in the user interface will <em>not</em> turn the physi
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -190,6 +190,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -373,6 +376,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -196,6 +196,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -379,6 +382,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -253,6 +253,9 @@ Any specific levels for triggers needs to be configured on the device.
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -436,6 +439,9 @@ Any specific levels for triggers needs to be configured on the device.
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -178,6 +178,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -188,6 +188,9 @@ file:</p>
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -162,6 +162,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -174,6 +174,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -197,6 +197,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.systemmonitor/'>System Monitor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.upcloud/'>UpCloud Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.vultr/'>Vultr Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -188,6 +188,9 @@ This sensor is not suitable for fast state changes because there is a high possi
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -166,6 +166,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -161,6 +161,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -167,6 +167,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -216,6 +216,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -184,6 +184,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -159,6 +159,9 @@ To get your Blink binary sensors working with Home Assistant, follow the instruc
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -179,6 +179,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -216,6 +216,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -162,6 +162,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -187,6 +187,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -205,6 +205,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.systemmonitor/'>System Monitor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.upcloud/'>UpCloud Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.vultr/'>Vultr Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -166,6 +166,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
384
components/binary_sensor.egardia/index.html
Normal file
384
components/binary_sensor.egardia/index.html
Normal file
|
@ -0,0 +1,384 @@
|
|||
<!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>Egardia Binary Sensor - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions how to integrate Egardia / Woonveilig binary sensors into Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/binary_sensor.egardia/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="Egardia Binary Sensor">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/binary_sensor.egardia/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions how to integrate Egardia / Woonveilig binary sensors 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="Egardia Binary Sensor">
|
||||
<meta name="twitter:description" content="Instructions how to integrate Egardia / Woonveilig binary sensors into Home Assistant.">
|
||||
<meta name="twitter:image" content="https://home-assistant.io/images/default-social.png">
|
||||
<link href="/stylesheets/screen.css" media="screen, projection, print" 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 class='site-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>
|
||||
<li><a href='#' class='show-search'><i class="icon-search"></i></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class='search-container' style='display: none'>
|
||||
<div class='search'>
|
||||
<i class="icon-search"></i>
|
||||
<input id='search' placeholder='Search the docs…'>
|
||||
<a href='#' class='close'><i class="icon-remove-sign"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</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">
|
||||
Egardia Binary Sensor
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>The <code class="highlighter-rouge">egardia</code> platform allows you to get data from your <a href="http://www.egardia.com">Egardia</a>/<a href="http://www.woonveilig.nl">Woonveilig</a> binary sensors from within Home Assistant.
|
||||
Currently only door contacts are supported. IR sensors are not supported and will probably never be since their status cannot be read outside of the alarm control panel. Smoke sensors and others might be added but currently are not supported.</p>
|
||||
<p>You will need to set up your <a href="/components/egardia/">Egardia hub</a>.</p>
|
||||
</article>
|
||||
</div>
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
<div class="grid">
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_components/binary_sensor.egardia.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/egardia.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>: Polling
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.65
|
||||
</div>
|
||||
<div class='section'>
|
||||
Source:
|
||||
<a href='https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/binary_sensor/egardia.py'>binary_sensor/egardia.py</a>
|
||||
</div>
|
||||
<div class='section'>
|
||||
This is a platform for
|
||||
<a href='/components/binary_sensor/'>the Binary Sensor component</a>.
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/egardia/'>
|
||||
Egardia
|
||||
</a></li>
|
||||
<li><a href='/components/alarm_control_panel.egardia/'>
|
||||
Egardia / Woonveilig Alarm Control Panel
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category Binary Sensor</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ads/'>ADS Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.abode/'>Abode Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.alarmdecoder/'>AlarmDecoder Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.android_ip_webcam/'>Android IP Webcam Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.august/'>August Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.aurora/'>Aurora sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.axis/'>Axis Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bayesian/'>Bayesian Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bbb_gpio/'>BeagleBone Black GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.blink/'>Blink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.bloomsky/'>BloomSky Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.command_line/'>Command line Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.concord232/'>Concord232 Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ecobee/'>Ecobee Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
Egardia Binary Sensor
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.enocean/'>EnOcean Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.envisalink/'>Envisalink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ffmpeg_motion/'>FFmpeg Motion Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ffmpeg_noise/'>FFmpeg Noise Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.flic/'>Flic Smart Button</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.http/'>HTTP Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.hikvision/'>Hikvision Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.hive/'>Hive Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.homematic/'>Homematic Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ihc/'>IHC Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.isy994/'>ISY994 Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.insteon_plm/'>Insteon PLM Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.iss/'>International Space Station</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.knx/'>KNX Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.mqtt/'>MQTT Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.raincloud/'>Melnor Raincloud Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.mercedesme/'>Mercedes me Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.modbus/'>Modbus Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.mysensors/'>MySensors Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.nx584/'>NX584 zones</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.nest/'>Nest Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.netatmo/'>Netatmo Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.octoprint/'>OctoPrint Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.rpi_pfio/'>PiFace Digital I/O Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.pilight/'>Pilight Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ping/'>Ping (ICMP) Binary sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.rest/'>RESTful Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.rfxtrx/'>RFXtrx Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.rpi_gpio/'>Raspberry Pi GPIO Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.raspihats/'>Raspihats Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.ring/'>Ring Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.spc/'>SPC Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.satel_integra/'>Satel Integra Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.skybell/'>Skybell Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.sleepiq/'>SleepIQ Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.tcp/'>TCP Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.tellduslive/'>Telldus Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.template/'>Template Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.tesla/'>Tesla Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.threshold/'>Threshold Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.trend/'>Trend Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.velbus/'>Velbus sensors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.vera/'>Vera Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.verisure/'>Verisure Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.wink/'>Wink Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.workday/'>Workday Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.xiaomi_aqara/'>Xiaomi Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.zwave/'>Z-Wave Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.zigbee/'>ZigBee Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.zha/'>ZigBee Home Automation Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.arest/'>aREST Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.deconz/'>deCONZ Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.gc100/'>gc100 Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.mystrom/'>myStrom Binary Sensor</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
<div class="grid__item">
|
||||
<div class="copyright">
|
||||
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
|
||||
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
|
||||
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
|
||||
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
|
||||
<div class="credit">
|
||||
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a> (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>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.css" />
|
||||
<script type="text/javascript" src="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
docsearch({
|
||||
apiKey: 'ae96d94b201c5444c8a443093edf3efb',
|
||||
indexName: 'home-assistant',
|
||||
inputSelector: '#search',
|
||||
debug: false // Set debug to true if you want to inspect the dropdown
|
||||
});
|
||||
document.querySelector('.search .close').addEventListener('click', function(ev) {
|
||||
ev.preventDefault();
|
||||
document.querySelector('.search-container').style.display = 'none';
|
||||
});
|
||||
document.querySelector('.show-search').addEventListener('click', function(ev) {
|
||||
ev.preventDefault();
|
||||
document.querySelector('.search-container').style.display = 'block';
|
||||
document.getElementById('toggle').checked = false;
|
||||
document.querySelector('.search-container input').focus();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -158,6 +158,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
Eight Sleep Binary Sensor
|
||||
</li>
|
||||
|
|
|
@ -199,6 +199,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -162,6 +162,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -178,6 +178,9 @@ If the <code class="highlighter-rouge">ffmpeg</code> process is broken, the sens
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -169,6 +169,9 @@ If the <code class="highlighter-rouge">ffmpeg</code> process is broken, the sens
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -190,6 +190,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -168,6 +168,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -242,6 +242,9 @@ binary_sensor.home_line_crossing_2
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -174,6 +174,9 @@ Full configuration details can be found on the main <a href="/components/hive/">
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -170,6 +170,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -206,6 +206,9 @@ You should choose a unique device name (DEVICE_NAME) to avoid clashes with other
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -217,6 +217,9 @@ For more information about IHC resource ids see <a href="/components/ihc/#manual
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Insteon PLM Binary Sensor - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions how to setup the Insteon PLM switches locally within Home Assistant.">
|
||||
<meta name="description" content="Instructions how to setup the Insteon PLM binary sensors locally within Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/binary_sensor.insteon_plm/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
|
@ -16,12 +16,12 @@
|
|||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/binary_sensor.insteon_plm/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions how to setup the Insteon PLM switches locally within Home Assistant.">
|
||||
<meta property="og:description" content="Instructions how to setup the Insteon PLM binary sensors locally 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="Insteon PLM Binary Sensor">
|
||||
<meta name="twitter:description" content="Instructions how to setup the Insteon PLM switches locally within Home Assistant.">
|
||||
<meta name="twitter:description" content="Instructions how to setup the Insteon PLM binary sensors locally within Home Assistant.">
|
||||
<meta name="twitter:image" content="https://home-assistant.io/images/default-social.png">
|
||||
<link href="/stylesheets/screen.css" media="screen, projection, print" rel="stylesheet">
|
||||
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
|
||||
|
@ -104,9 +104,15 @@ component.</p>
|
|||
<li><a href='/components/insteon_plm/'>
|
||||
Insteon PLM
|
||||
</a></li>
|
||||
<li><a href='/components/fan.insteon_plm/'>
|
||||
Insteon PLM Fan
|
||||
</a></li>
|
||||
<li><a href='/components/light.insteon_plm/'>
|
||||
Insteon PLM Light
|
||||
</a></li>
|
||||
<li><a href='/components/sensor.insteon_plm/'>
|
||||
Insteon PLM Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/switch.insteon_plm/'>
|
||||
Insteon PLM Switch
|
||||
</a></li>
|
||||
|
@ -160,6 +166,9 @@ component.</p>
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -173,6 +173,9 @@ If you set <code class="highlighter-rouge">show_on_map</code> <code class="highl
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -173,6 +173,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -222,6 +222,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -201,6 +201,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.systemmonitor/'>System Monitor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.upcloud/'>UpCloud Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.vultr/'>Vultr Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -162,6 +162,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -198,6 +198,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -296,6 +296,9 @@ home/bathroom/switch/button 1
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -277,6 +277,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -203,6 +203,9 @@ The firmware version 2.26 doesn’t support TLS/SSL. This means that you are onl
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -205,6 +205,9 @@ You must have the <a href="/components/nest/">Nest component</a> configured to u
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -208,6 +208,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -184,6 +184,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -178,6 +178,9 @@ You must have the <a href="/components/octoprint/">OctoPrint component</a> confi
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -190,6 +190,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -183,6 +183,9 @@ When run on Windows systems, the round trip time attributes are rounded to the n
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -175,6 +175,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -239,6 +239,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.filesize/'>File size sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.filter/'>Filter Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.folder/'>Folder sensor</a>
|
||||
</li>
|
||||
|
@ -290,6 +293,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.influxdb/'>InfluxDB Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.insteon_plm/'>Insteon PLM Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.juicenet/'>Juicenet Sensor</a>
|
||||
</li>
|
||||
|
@ -401,6 +407,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.shodan/'>Shodan Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.simulated/'>Simulated sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.skybell/'>Skybell Sensor</a>
|
||||
</li>
|
||||
|
@ -506,6 +515,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.comfoconnect/'>Zehnder ComfoAir Q Ventilation sensors</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.zestimate/'>Zestimate</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.zha/'>ZigBee Home Automation Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -226,6 +226,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -276,6 +276,9 @@ User-Agent: Home Assistant
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -264,6 +264,9 @@ to configure your new devices and leave it off otherwise.</p>
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -176,6 +176,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -181,6 +181,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -184,6 +184,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -159,6 +159,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -184,6 +184,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -157,6 +157,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -159,6 +159,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -174,6 +174,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -154,6 +154,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -326,6 +326,9 @@ device tracking and Z-Wave multisensor presence sensors.</p>
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -171,6 +171,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -186,6 +186,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -202,6 +202,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
277
components/binary_sensor.upcloud/index.html
Normal file
277
components/binary_sensor.upcloud/index.html
Normal file
|
@ -0,0 +1,277 @@
|
|||
<!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>UpCloud Binary Sensor - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions on how to set up UpCloud binary sensors within Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/binary_sensor.upcloud/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
<meta property="og:title" content="UpCloud Binary Sensor">
|
||||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/binary_sensor.upcloud/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions on how to set up UpCloud binary sensors within Home Assistant.">
|
||||
<meta property="og:image" content="https://home-assistant.io/images/default-social.png">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:site" content="@home_assistant">
|
||||
<meta name="twitter:title" content="UpCloud Binary Sensor">
|
||||
<meta name="twitter:description" content="Instructions on how to set up UpCloud binary sensors within Home Assistant.">
|
||||
<meta name="twitter:image" content="https://home-assistant.io/images/default-social.png">
|
||||
<link href="/stylesheets/screen.css" media="screen, projection, print" 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 class='site-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>
|
||||
<li><a href='#' class='show-search'><i class="icon-search"></i></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class='search-container' style='display: none'>
|
||||
<div class='search'>
|
||||
<i class="icon-search"></i>
|
||||
<input id='search' placeholder='Search the docs…'>
|
||||
<a href='#' class='close'><i class="icon-remove-sign"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
</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">
|
||||
UpCloud Binary Sensor
|
||||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>The <code class="highlighter-rouge">upcloud</code> binary sensor platform allows you to monitor your UpCloud servers.</p>
|
||||
<p>To use your UpCloud servers, you first have to set up your <a href="/components/upcloud/">UpCloud hub</a> and then 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">binary_sensor</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">upcloud</span>
|
||||
<span class="s">servers</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">002167b7-4cb1-44b7-869f-e0900ddeeae1</span>
|
||||
<span class="pi">-</span> <span class="s">00886296-6137-4074-afe3-068e16d89d00</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
<div class="config-vars">
|
||||
<h3><a class="title-link" name="configuration-variables" href="#configuration-variables"></a> Configuration Variables</h3>
|
||||
<dl class="">
|
||||
<dt><a class="title-link" name="servers" href="#servers"></a> servers</dt>
|
||||
<dd>
|
||||
<p class="desc"><span class="type">(<span class="list">list</span>)</span><span class="required">(Required)</span><span class="description">List of servers you want to monitor.</span></p>
|
||||
</dd>
|
||||
</dl>
|
||||
</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/binary_sensor.upcloud.markdown'>Edit this page on GitHub</a></div>
|
||||
<div class='brand-logo-container section'>
|
||||
<img src='/images/supported_brands/upcloud.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>: Cloud Polling
|
||||
</div>
|
||||
<div class='section'>
|
||||
Introduced in release: 0.65
|
||||
</div>
|
||||
<div class='section'>
|
||||
Source:
|
||||
<a href='https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/binary_sensor/upcloud.py'>binary_sensor/upcloud.py</a>
|
||||
</div>
|
||||
<div class='section'>
|
||||
This is a platform for
|
||||
<a href='/components/binary_sensor/'>the Binary Sensor component</a>.
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class='title delta'>Related components</h1>
|
||||
<ul class='divided'>
|
||||
<li><a href='/components/upcloud/'>
|
||||
UpCloud
|
||||
</a></li>
|
||||
<li><a href='/components/switch.upcloud/'>
|
||||
UpCloud Switch
|
||||
</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Category System Monitor</h1>
|
||||
<ul class='divided'>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.apcupsd/'>APCUPSd Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.apcupsd/'>APCUPSd Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.cpuspeed/'>CPU speed</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.cups/'>CUPS Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.cert_expiry/'>Certificate Expiry</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.digital_ocean/'>Digital Ocean Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.dovado/'>Dovado</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.fritzbox_callmonitor/'>FRITZ!Box Call Monitor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.fritzbox_netmonitor/'>FRITZ!Box Net Monitor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.fastdotcom/'>Fast.com</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.glances/'>Glances</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.google_wifi/'>Google Wifi</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.hddtemp/'>HDDTemp</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.hp_ilo/'>HP ILO</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.linode/'>Linode Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.linux_battery/'>Linux Battery</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.nut/'>NUT Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.netdata/'>Netdata</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.openhardwaremonitor/'>Open Hardware Monitor Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.pi_hole/'>Pi-Hole Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.snmp/'>SNMP</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.speedtest/'>Speedtest.net</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.supervisord/'>Supervisord</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.synologydsm/'>SynologyDSM Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.systemmonitor/'>System Monitor</a>
|
||||
</li>
|
||||
<li>
|
||||
UpCloud Binary Sensor
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.vultr/'>Vultr Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.vultr/'>Vultr Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/zabbix/'>Zabbix</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/sensor.zabbix/'>Zabbix Sensor</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
<div class="grid-wrapper">
|
||||
<div class="grid">
|
||||
<div class="grid__item">
|
||||
<div class="copyright">
|
||||
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
|
||||
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
|
||||
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
|
||||
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
|
||||
<div class="credit">
|
||||
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a> (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>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.css" />
|
||||
<script type="text/javascript" src="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
docsearch({
|
||||
apiKey: 'ae96d94b201c5444c8a443093edf3efb',
|
||||
indexName: 'home-assistant',
|
||||
inputSelector: '#search',
|
||||
debug: false // Set debug to true if you want to inspect the dropdown
|
||||
});
|
||||
document.querySelector('.search .close').addEventListener('click', function(ev) {
|
||||
ev.preventDefault();
|
||||
document.querySelector('.search-container').style.display = 'none';
|
||||
});
|
||||
document.querySelector('.show-search').addEventListener('click', function(ev) {
|
||||
ev.preventDefault();
|
||||
document.querySelector('.search-container').style.display = 'block';
|
||||
document.getElementById('toggle').checked = false;
|
||||
document.querySelector('.search-container input').focus();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -190,6 +190,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -176,6 +176,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -168,6 +168,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -222,6 +222,9 @@ The following examples assume a subscription that has an ID of <code class="high
|
|||
<li>
|
||||
<a href='/components/sensor.systemmonitor/'>System Monitor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.upcloud/'>UpCloud Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
Vultr Binary Sensor
|
||||
</li>
|
||||
|
|
|
@ -199,6 +199,9 @@ The above devices are confirmed to work, but others may work as well.
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -183,6 +183,9 @@ If you use the sensor for Canada (<code class="highlighter-rouge">CA</code>) wit
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -546,6 +546,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -160,6 +160,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -178,6 +178,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -175,6 +175,9 @@
|
|||
<li>
|
||||
<a href='/components/sensor.ecobee/'>Ecobee Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.egardia/'>Egardia Binary Sensor</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/binary_sensor.eight_sleep/'>Eight Sleep Binary Sensor</a>
|
||||
</li>
|
||||
|
|
|
@ -86,6 +86,7 @@
|
|||
<li><strong>gas</strong>: <code class="highlighter-rouge">On</code> means gas detected, <code class="highlighter-rouge">Off</code> means no gas (clear)</li>
|
||||
<li><strong>heat</strong>: <code class="highlighter-rouge">On</code> means hot, <code class="highlighter-rouge">Off</code> means normal</li>
|
||||
<li><strong>light</strong>: <code class="highlighter-rouge">On</code> means light detected, <code class="highlighter-rouge">Off</code> means no light</li>
|
||||
<li><strong>lock</strong>: <code class="highlighter-rouge">On</code> means open (unlocked), <code class="highlighter-rouge">Off</code> means closed (locked)</li>
|
||||
<li><strong>moisture</strong>: <code class="highlighter-rouge">On</code> means moisture detected (wet), <code class="highlighter-rouge">Off</code> means no moisture (dry)</li>
|
||||
<li><strong>motion</strong>: <code class="highlighter-rouge">On</code> means motion detected, <code class="highlighter-rouge">Off</code> means no motion (clear)</li>
|
||||
<li><strong>moving</strong>: <code class="highlighter-rouge">On</code> means moving, <code class="highlighter-rouge">Off</code> means not moving (stopped)</li>
|
||||
|
@ -160,6 +161,9 @@
|
|||
<li><a href='/components/binary_sensor.ecobee/'>
|
||||
Ecobee Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.egardia/'>
|
||||
Egardia Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.eight_sleep/'>
|
||||
Eight Sleep Binary Sensor
|
||||
</a></li>
|
||||
|
@ -295,6 +299,9 @@
|
|||
<li><a href='/components/binary_sensor.trend/'>
|
||||
Trend Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.upcloud/'>
|
||||
UpCloud Binary Sensor
|
||||
</a></li>
|
||||
<li><a href='/components/binary_sensor.velbus/'>
|
||||
Velbus sensors
|
||||
</a></li>
|
||||
|
|
|
@ -216,6 +216,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -399,6 +402,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -175,6 +175,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -358,6 +361,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -200,6 +200,9 @@
|
|||
<li>
|
||||
<a href='/components/dyson/'>Dyson</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/egardia/'>Egardia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/eight_sleep/'>Eight Sleep</a>
|
||||
</li>
|
||||
|
@ -383,6 +386,9 @@
|
|||
<li>
|
||||
<a href='/components/usps/'>USPS</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/upcloud/'>UpCloud</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/velbus/'>Velbus</a>
|
||||
</li>
|
||||
|
|
|
@ -156,6 +156,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.canary/'>Canary Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -143,6 +143,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.canary/'>Canary Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -149,6 +149,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.canary/'>Canary Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -152,6 +152,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.canary/'>Canary Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -140,6 +140,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.canary/'>Canary Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -137,6 +137,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.canary/'>Canary Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -141,6 +141,9 @@ To get your Blink cameras working with Home Assistant, follow the instructions f
|
|||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.canary/'>Canary Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -145,6 +145,9 @@
|
|||
<li>
|
||||
BloomSky Camera
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.canary/'>Canary Camera</a>
|
||||
</li>
|
||||
|
|
|
@ -154,6 +154,9 @@
|
|||
<li>
|
||||
<a href='/components/camera.bloomsky/'>BloomSky Camera</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='/components/camera.proxy/'>Camera Proxy</a>
|
||||
</li>
|
||||
<li>
|
||||
Canary Camera
|
||||
</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