From a9911f3ba2f52c2616317635918fb0e031b91ebf Mon Sep 17 00:00:00 2001 From: Sean Mooney Date: Thu, 15 Oct 2020 14:23:24 -0400 Subject: [PATCH] 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 :) --- source/_integrations/shopping_list.markdown | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/source/_integrations/shopping_list.markdown b/source/_integrations/shopping_list.markdown index 95e71e2c26f..2e852ab46db 100644 --- a/source/_integrations/shopping_list.markdown +++ b/source/_integrations/shopping_list.markdown @@ -10,7 +10,10 @@ ha_iot_class: Local Push 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 @@ -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**. -In the popup: -- Submit - -The success dialog will appear or an error will be displayed in the popup. - ## Configuration - Manual ```yaml @@ -32,16 +30,16 @@ shopping_list: ## 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 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 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" |