You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/emulated_hue.markdown
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -49,11 +49,11 @@ Configuration variables:
49
49
- **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.
50
50
51
51
- **off_maps_to_on_domains** (*Optional*): The domains that maps an "off" command to an "on" command.
52
-
52
+
53
53
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
+
55
55
If not specified, this defaults to the following list:
56
-
56
+
57
57
- `script`
58
58
- `scene`
59
59
@@ -84,7 +84,7 @@ emulated_hue:
84
84
- light
85
85
```
86
86
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.
88
88
89
89
```yaml
90
90
# Example customization
@@ -110,13 +110,14 @@ You can verify that the `emulated_hue` component has been loaded and is respondi
110
110
- `http://<HA IP Address>:8300/description.xml`- This URL should return a descriptor file in the form of an XML file.
111
111
- `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.
112
112
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`).
114
114
115
115
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.
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`.
Copy file name to clipboardExpand all lines: source/hassio/external_storage.markdown
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,11 @@ footer: true
12
12
13
13
### {% linkable_title ResinOS / Generic %}
14
14
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`.
17
17
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.
19
19
20
20
### {% linkable_title Generic %}
21
21
22
22
The `share` is default on `/usr/share/hassio/share` so you can mount your volumes into this folder.
Copy file name to clipboardExpand all lines: source/hassio/installation.markdown
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,13 @@ footer: true
11
11
12
12
Hass.io images are available for all available Raspberry Pi and Intel NUC platforms.
13
13
14
-
- Download the appropriate image for your Raspberry Pi / intel nuc:
14
+
- Download the appropriate image for your Raspberry Pi / Intel NUC:
15
15
-[Raspberry Pi / Zero][pi1]
16
16
-[Raspberry Pi 2][pi2]
17
17
-[Raspberry Pi 3][pi3]
18
18
-[Intel NUC][nuc]
19
19
- 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].
21
21
- 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).
22
22
- You will be able to reach your installation at [http://hassio.local:8123][local].
23
23
- Enable either the [Samba add-on][samba] or the [SSH add-on][ssh] to manage your configuration.
Copy file name to clipboardExpand all lines: source/hassio/run_local.markdown
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,11 @@ sharing: true
9
9
footer: true
10
10
---
11
11
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.
13
13
14
14
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.
15
15
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].
17
17
18
18
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].
0 commit comments