forked from home-assistant/home-assistant.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request home-assistant#1291 from JasonCarter80/known_icons
Documenting ICON addition to known_device.yaml config file
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,6 +59,7 @@ Here's an example configuration for a single device: | |
devicename: | ||
name: Friendly Name | ||
mac: EA:AA:55:E7:C6:94 | ||
icon: mdi:face-profile | ||
picture: https://home-assistant.io/images/favicon-192x192.png | ||
gravatar: [email protected] | ||
track: yes | ||
|
@@ -69,7 +70,8 @@ devicename: | |
|----------------|-------------------------------|---------------------------------------------------------------------------------------------------------| | ||
| `name` | Host name or "Unnamed Device" | The friendly name of the device | | ||
| `mac` | None | The MAC address of the device. Add this if you are using a network device tracker like Nmap or SNMP | | ||
| `picture` | None | A picture that you can use to easily identify the person or device | | ||
| `icon` | None | A name of an MDI Icon. | | ||
| `picture` | None | A picture that you can use to easily identify the person or device, if provided, will override 'icon' | | ||
| `gravatar` | None | An email address for the device's owner. If provided, it will override `picture` | | ||
| `track` | False | If `yes`/`on`/`true` then the device will be tracked. Otherwise its location and state will not update | | ||
| `hide_if_away` | False | If `yes`/`on`/`true` then the device will be hidden if it is not at home | | ||
|