Skip to content

Commit 227dcd2

Browse files
arsaboofabaff
authored andcommitted
Added alternate path for virtualenv and cleaned up hassio docs (home-assistant#3032)
* Added alternate path for virtualenv * Clean up docs * Fixed typos * Fixed typos
1 parent e183eca commit 227dcd2

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

source/_components/emulated_hue.markdown

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ Configuration variables:
4949
- **upnp_bind_multicast** (*Optional*): Whether or not to bind the UPNP (SSDP) listener to the multicast address (239.255.255.250) or instead to the (unicast) host_ip address specified above (or automatically determined). The default is true, which will work for most situations. In special circumstances, like running in a FreeBSD or FreeNAS jail, you may need to disable this.
5050

5151
- **off_maps_to_on_domains** (*Optional*): The domains that maps an "off" command to an "on" command.
52-
52+
5353
For example, if `script` is included in the list, and you ask Alexa to "turn off the *water plants* script," the command will be handled as if you asked her to turn on the script.
54-
54+
5555
If not specified, this defaults to the following list:
56-
56+
5757
- `script`
5858
- `scene`
5959

@@ -84,7 +84,7 @@ emulated_hue:
8484
- light
8585
```
8686

87-
With additional customization you will be able to specify the behaviour of the existing entities.
87+
With additional customization you will be able to specify the behavior of the existing entities.
8888

8989
```yaml
9090
# Example customization
@@ -110,13 +110,14 @@ You can verify that the `emulated_hue` component has been loaded and is respondi
110110
- `http://<HA IP Address>:8300/description.xml` - This URL should return a descriptor file in the form of an XML file.
111111
- `http://<HA IP Address>:8300/api/pi/lights` - This will return a list of devices, lights, scenes, groups, etc.. that `emulated_hue` is exposing to Alexa.
112112

113-
For Google Home, verify that the URLs above are using port 80, rather than port 8300 (i.e. `http://<HA IP Address>:80/description.xml`).
113+
For Google Home, verify that the URLs above are using port 80, rather than port 8300 (i.e. `http://<HA IP Address>:80/description.xml`).
114114

115115
An additional step is required to run Home Assistant as non-root user and use port 80 when using the AiO script. Execute the following command to allow `emulated_hue` to use port 80 as non-root user.
116116

117117
```bash
118118
sudo setcap 'cap_net_bind_service=+ep' /srv/homeassistant/homeassistant_venv/bin/python3
119119
```
120+
Please note that your path may be different depending on your installation method. For example, if you followed the [Virtualenv instructions](https://home-assistant.io/docs/installation/virtualenv/), your path will be `/srv/homeassistant/bin/python3`.
120121

121122
### {% linkable_title License %}
122123

source/hassio/external_storage.markdown

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ footer: true
1212

1313
### {% linkable_title ResinOS / Generic %}
1414

15-
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.
16-
It is also possible to create a add-on that only mount stuff to `share`.
15+
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.
16+
It is also possible to create an add-on that only mounts stuff to `share`.
1717

18-
You can format the usb device with multiple volumes and map it to the specific add-on.
18+
You can format the USB device with multiple volumes and map it to a specific add-on.
1919

2020
### {% linkable_title Generic %}
2121

2222
The `share` is default on `/usr/share/hassio/share` so you can mount your volumes into this folder.
23-

source/hassio/installation.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ footer: true
1111

1212
Hass.io images are available for all available Raspberry Pi and Intel NUC platforms.
1313

14-
- Download the appropriate image for your Raspberry Pi / intel nuc:
14+
- Download the appropriate image for your Raspberry Pi / Intel NUC:
1515
- [Raspberry Pi / Zero][pi1]
1616
- [Raspberry Pi 2][pi2]
1717
- [Raspberry Pi 3][pi3]
1818
- [Intel NUC][nuc]
1919
- Flash the downloaded image to an SD card using [Etcher].
20-
- Optional - Setup the WiFi or static ip: On the SD-card, edit the `system-connections/resin-sample` file and follow the [ResinOS howto][resinos-network].
20+
- Optional - Setup the WiFi or static IP: On the SD-card, edit the `system-connections/resin-sample` file and follow the [ResinOS howto][resinos-network].
2121
- 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).
2222
- You will be able to reach your installation at [http://hassio.local:8123][local].
2323
- Enable either the [Samba add-on][samba] or the [SSH add-on][ssh] to manage your configuration.

source/hassio/run_local.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ sharing: true
99
footer: true
1010
---
1111

12-
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.
12+
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.
1313

1414
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.
1515

16-
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][custom-component].
16+
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][custom-component].
1717

1818
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][addons-tutorial].
1919

0 commit comments

Comments
 (0)