Site updated at 2018-02-16 17:44:20 UTC

This commit is contained in:
Travis CI 2018-02-16 17:44:20 +00:00
parent 1621dc9ebd
commit b63d63caa9
30 changed files with 91 additions and 77 deletions

View file

@ -86,6 +86,7 @@
<li>Click Create credentials -&gt; OAuth client ID.</li>
<li>Set the Application type to Other and give this credential set a name then click Create.</li>
<li>Save the client ID and secret as you will need to put these in your configuration.yaml file.</li>
<li>Click on “Library”, search for “Google Calendar API” and enable it.</li>
</ol>
<h3><a class="title-link" name="basic-setup" href="#basic-setup"></a> Basic Setup</h3>
<p>To integrate Google Calendar in Home Assistant, add the following section to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>

View file

@ -107,6 +107,8 @@
<div class="language-bash highlighter-rouge"><pre class="highlight"><code>sudo usermod -a -G audio homeassistant
</code></pre>
</div>
<h5><a class="title-link" name="vlc-currently-not-supported-with-hassio" href="#vlc-currently-not-supported-with-hassio"></a> VLC currently not supported with Hass.io</h5>
<p>According to the forum topic <a href="http://community.home-assistant.io/t/how-to-add-vlc-into-my-hassio/23000/5">“How to add VLC into my Hassio”</a>, it is not possible to install packages like VLC on Hass.io.</p>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">

View file

@ -325,7 +325,7 @@ easily via a hidden menu item at the Mi-Home app.
<li>Enable developer mode, USB debugging and plug the Android phone into the computer.</li>
<li>Get ADB e.g. <code class="highlighter-rouge">apt-get install android-tools-adb</code> or <code class="highlighter-rouge">apt-get install adb</code></li>
<li><code class="highlighter-rouge">adb devices</code> should list your device. Consult ADB manual if necessary.</li>
<li>Issue a backup command via adb: <code class="highlighter-rouge">adb backup -noapk com.xiaomi.smarthome -f backup.ab</code> (set a password if prompted on your phone)</li>
<li>Issue a backup command via adb: <code class="highlighter-rouge">adb backup -noapk com.xiaomi.smarthome -f backup.ab</code> (set a password if prompted on your phone). Some devices may required single quotes in the command <code class="highlighter-rouge">adb backup '-noapk com.xiaomi.smarthome -f backup.ab'</code></li>
<li>Download the ADB Backup Extractor from <a href="https://sourceforge.net/projects/adbextractor/files/latest/download">here</a></li>
<li>Extract the data from the backup: <code class="highlighter-rouge">java -jar Android\ Backup\ Utilities/Android\ Backup\ Extractor/android-backup-extractor-20171005-bin/abe.jar unpack backup.ab unpacked.tar</code> (enter the password, if prompted)</li>
<li>Untar the unpacked data: <code class="highlighter-rouge">tar -xvf unpacked.tar</code></li>