diff --git a/atom.xml b/atom.xml index 520f8854da..8ed0a75f4e 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
With additional customization you will be able to specify the behaviour of the existing entities.
+With additional customization you will be able to specify the behavior of the existing entities.
# Example customization
homeassistant:
customize:
@@ -172,6 +172,7 @@ The virtual bridge has the ability to turn entities on or off, or change the bri
sudo setcap 'cap_net_bind_service=+ep' /srv/homeassistant/homeassistant_venv/bin/python3
+Please note that your path may be different depending on your installation method. For example, if you followed the Virtualenv instructions, your path will be /srv/homeassistant/bin/python3
.
License
Much of this code is based on work done by Bruce Locke on his ha-local-echo project, originally released under the MIT License. The license is located here.
diff --git a/components/media_player.samsungtv/index.html b/components/media_player.samsungtv/index.html
index 583f7a47a1..49a431d0b9 100644
--- a/components/media_player.samsungtv/index.html
+++ b/components/media_player.samsungtv/index.html
@@ -103,6 +103,7 @@
EH5300
EH5600
F6400AF
+ F6400
D6505
D6300SF
U6000 (port must be set to 8001)
diff --git a/docs/ecosystem/nginx_subdomain/index.html b/docs/ecosystem/nginx_subdomain/index.html
index a13276f4a0..3aaea9aa12 100644
--- a/docs/ecosystem/nginx_subdomain/index.html
+++ b/docs/ecosystem/nginx_subdomain/index.html
@@ -97,6 +97,10 @@
location / {
proxy_pass http://localhost:8123/;
proxy_set_header Host $host;
+
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "upgrade";
}
location /api/websocket {
diff --git a/docs/hassbian/installation/index.html b/docs/hassbian/installation/index.html
index 84bbf5e569..bfc25841f2 100644
--- a/docs/hassbian/installation/index.html
+++ b/docs/hassbian/installation/index.html
@@ -83,7 +83,8 @@
Insert SD card to Raspberry Pi and turn it on. Initial installation of Home Assistant will take about 5 minutes.
These instructions are also available as a video. Additional information is available in this video.
-After initial boot, you can reach Home Assistant in your browser at http://hassbian.local:8123. If you want to login via SSH, the default username is pi
and password is raspberry
(please change this by running passwd
). The Home Assistant configuration is located at /home/homeassistant/.homeassistant/
.
+After initial boot an installer will run in the background and takes around 15 minutes to complete, after it has finished you can reach Home Assistant in your browser at http://hassbian.local:8123. If you want to login via SSH, the default username is pi
and password is raspberry
(please change this by running passwd
). The Home Assistant configuration is located at /home/homeassistant/.homeassistant/
.
+If you find that the web page is not reachable after 30 minutes or so, check that you have files in /home/homeassistant/.homeassistant/
, if there are no files in this location then run the installer manually using this command: sudo systemctl start install_homeassistant.service
.
The following extras are included on the image:
- GPIO pins are ready to use.
diff --git a/hassio/external_storage/index.html b/hassio/external_storage/index.html
index 9a898570a2..596434bc32 100644
--- a/hassio/external_storage/index.html
+++ b/hassio/external_storage/index.html
@@ -76,9 +76,9 @@
ResinOS / Generic
-Map the usb drive into add-on with devices
options. If you need it on multiple add-ons you can use the /share
folder which is accessable from multiple add-ons.
-It is also possible to create a add-on that only mount stuff to share
.
-You can format the usb device with multiple volumes and map it to the specific add-on.
+Map the USB drive into add-on with devices
options. If you need it on multiple add-ons you can use the /share
folder which is accessible from multiple add-ons.
+It is also possible to create an add-on that only mounts stuff to share
.
+You can format the USB device with multiple volumes and map it to a specific add-on.
Generic
The share
is default on /usr/share/hassio/share
so you can mount your volumes into this folder.
diff --git a/hassio/installation/index.html b/hassio/installation/index.html
index 5850bf770c..dc240b6e41 100644
--- a/hassio/installation/index.html
+++ b/hassio/installation/index.html
@@ -77,7 +77,7 @@
Hass.io images are available for all available Raspberry Pi and Intel NUC platforms.
- - Download the appropriate image for your Raspberry Pi / intel nuc:
+
- Download the appropriate image for your Raspberry Pi / Intel NUC:
- Raspberry Pi / Zero
- Raspberry Pi 2
@@ -86,7 +86,7 @@
- Flash the downloaded image to an SD card using Etcher.
- - Optional - Setup the WiFi or static ip: On the SD-card, edit the
system-connections/resin-sample
file and follow the ResinOS howto.
+ - Optional - Setup the WiFi or static IP: On the SD-card, edit the
system-connections/resin-sample
file and follow the ResinOS howto.
- Insert SD card to Raspberry Pi and turn it on. On first boot, it downloads the latest version of Home Assistant which takes ~20 minutes (slower/faster depending on the platform).
- You will be able to reach your installation at http://hassio.local:8123.
- Enable either the Samba add-on or the SSH add-on to manage your configuration.
diff --git a/hassio/run_local/index.html b/hassio/run_local/index.html
index 346ea8c6d3..01a2d253ca 100644
--- a/hassio/run_local/index.html
+++ b/hassio/run_local/index.html
@@ -75,9 +75,9 @@
- Hass.io is a managed environment. This means that you’re unable to install applications that you can embed into Home Assistant using the command_line
sensor/switch.
+ Hass.io is a managed environment. This means that you can install applications that can be embedded into Home Assistant using the command_line
sensor/switch.
There are two options if you need to run a script to read data from a sensor or send commands to other devices on Hass.IO.
-First option is to write a custom component for Home Assistant. Using Python you can communicate with your device. For custom component, look at the devoloper site.
+First option is to write a custom component for Home Assistant. Using Python you can communicate with your device. For custom component, look at the developer site.
The second option is to make a local add-on for Hass.io that sends the data to Home Assistant via MQTT. Before we dive into this, read up on Hass.io add-on development.
For security and speed, Hass.io does not provide a way for containers to communicate directly. So the first step is to set up a communication channel. We’re going to use MQTT for this using the MQTT broker add-on.
Sensors
diff --git a/sitemap.xml b/sitemap.xml
index 483799f032..c1a209c9e7 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -3734,62 +3734,62 @@
https://home-assistant.io/demo/frontend.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/index.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-event.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-info.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-service.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-state.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-template.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-history.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-iframe.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-logbook.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/demo/panels/ha-panel-map.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/googlef4f3693c209fe788.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:57+00:00
https://home-assistant.io/static/fonts/roboto/DESCRIPTION.en_us.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:58+00:00
https://home-assistant.io/static/fonts/robotomono/DESCRIPTION.en_us.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:58+00:00
https://home-assistant.io/static/mdi-demo.html
-2017-07-21T18:16:10+00:00
+2017-07-21T19:37:58+00:00