Site updated at 2017-08-21 12:40:06 UTC

This commit is contained in:
Travis CI 2017-08-21 12:40:06 +00:00
parent 1355787afd
commit d996e32b31
27 changed files with 46 additions and 44 deletions

View file

@ -74,8 +74,8 @@
</h1>
</header>
<hr class="divider">
<p>The <code class="highlighter-rouge">rss_feed_template</code> component can export any information from Home Assistant as static RSS feed. This can be used to display those information on several devices using RSS readers. While native apps for Home Assistant are not widely available, native RSS readers exists for almost any platform.</p>
<p>E.g. on android, the app “Simple RSS Widget” can be used to display temperatures on the home screen.</p>
<p>The <code class="highlighter-rouge">rss_feed_template</code> component can export any information from Home Assistant as a static RSS feed. This can be used to display that information on many types of devices using an RSS reader. While native apps for Home Assistant are not widely available, native RSS readers exist for almost any platform.</p>
<p>For example, on Android, the app “Simple RSS Widget” can be used to display temperatures on the home screen.</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yml entry</span>
<span class="s">rss_feed_template</span><span class="pi">:</span>
<span class="s">garden</span><span class="pi">:</span>
@ -88,10 +88,10 @@
</div>
<p>Configuration variables:</p>
<ul>
<li><strong>requires_api_password:</strong> (<em>Optional</em>): If true and an api password is set, the password must be passed via ?api_password=…’ parameter (Default: True)</li>
<li><strong>feed_id</strong> (<em>Required</em>): The key is used as id of the feed. The feed can be accessed at /api/rss_template/feed_id (example: garden)</li>
<li><strong>requires_api_password:</strong> (<em>Optional</em>): If true and an API password is set, the password must be passed via ?api_password=…’ parameter (Default: True)</li>
<li><strong>feed_id</strong> (<em>Required</em>): The key is used as the ID of the feed. The feed can be accessed at /api/rss_template/feed_id (example: garden)</li>
<li><strong>title</strong> (<em>Optional</em>): The title of the feed, which is parsed as <a href="/topics/templating/">template</a>.</li>
<li><strong>items</strong> (<em>Required</em>): A list of feed items</li>
<li><strong>items</strong> (<em>Required</em>): A list of feed items.</li>
<li><strong>items/title</strong> (<em>Optional</em>): The title of the item, which is parsed as <a href="/topics/templating/">template</a>.</li>
<li><strong>items/description</strong> (<em>Optional</em>): The description of the item, which is parsed as <a href="/topics/templating/">template</a>.</li>
</ul>