Shopping List integration page updates (#14943)

1. Voice control used to work out of the box, but Conversation integration was removed from default_config over a year ago (https://github.com/home-assistant/core/pull/24515), so these instructions were outdated. Updated the voice command part to clarify this relies on conversation integration being installed too.
2. Cross-linked to the Shopping List Lovelace card page
3. Removed the "click submit" and 'you'll get a success or error' part of instructions as I feel that is very obvious and unnecessary. This makes instructions a bit more concise.
4. Changed "Beer" example to "Milk" to be a tiny bit more kid friendly :)
This commit is contained in:
Sean Mooney 2020-10-15 14:23:24 -04:00 committed by GitHub
parent 60b7b7b8cc
commit a9911f3ba2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,10 @@ ha_iot_class: Local Push
ha_domain: shopping_list ha_domain: shopping_list
--- ---
The `shopping_list` integration allows you to keep track of shopping list items. Includes the ability to add items via your voice using the sentence "Add eggs to my shopping list". The `shopping_list` integration allows you to keep track of shopping list items.
Your shopping list will be accessible from the sidebar, and you can optionally add the [Shopping List card](/lovelace/shopping-list/) to your Lovelace dashboard. With the [Conversation integration](/integrations/conversation/) you can add items to your shopping list using voice commands like "Add eggs to my shopping list."
## Configuration - GUI ## Configuration - GUI
@ -18,11 +21,6 @@ From the Home Assistant front page go to **Configuration** and then select **Int
Use the plus button in the bottom right to add a new integration called **Shopping List**. Use the plus button in the bottom right to add a new integration called **Shopping List**.
In the popup:
- Submit
The success dialog will appear or an error will be displayed in the popup.
## Configuration - Manual ## Configuration - Manual
```yaml ```yaml
@ -32,16 +30,16 @@ shopping_list:
## Services ## Services
You can add or remove items on your shopping list by using the following services. You can add or remove items from your shopping list by using the following services.
### Service `shopping_list.add_item` ### Service `shopping_list.add_item`
| Service data attribute | Optional | Description | | Service data attribute | Optional | Description |
|------------------------|----------|--------------------------------------------------------| |------------------------|----------|--------------------------------------------------------|
| `name` | no | Name of the item to add. Example: "Beer" | | `name` | no | Name of the item to add. Example: "Milk" |
### Service `shopping_list.complete_item` ### Service `shopping_list.complete_item`
| Service data attribute | Optional | Description | | Service data attribute | Optional | Description |
|------------------------|----------|--------------------------------------------------------| |------------------------|----------|--------------------------------------------------------|
| `name` | no | Name of the item to mark as completed. Example: "Beer" | | `name` | no | Name of the item to mark as completed. Example: "Milk" |