From ee015c61520dab15991c4b7955e789c4e9ca2f92 Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Mon, 7 Dec 2020 06:52:00 -0600 Subject: [PATCH] Update Reference.md --- docs/Reference.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/Reference.md b/docs/Reference.md index 8fbe780..665d58e 100644 --- a/docs/Reference.md +++ b/docs/Reference.md @@ -60,11 +60,11 @@ Creating an instance of this **class** adds a new HAP Accessory to the HomeSpan * every HomeSpan sketch requires at least one Accessory * there are no associated methods - * The argument *aid* is optional. - * If specified and *not* zero, the Accessory ID is set to *aid*. - * If unspecified, or equal to zero, the Accessory ID will be set to one more than the ID of the previously-instantiated Accessory, or to 1 if this is the first Accessory. - * The first Accessory instantiated must always have an ID=1 (which is the default if *aid* is unspecified). - * Setting the *aid* of the first Accessory to anything but 1 throws an error during initialization. + * the argument *aid* is optional. + * if specified and *not* zero, the Accessory ID is set to *aid*. + * if unspecified, or equal to zero, the Accessory ID will be set to one more than the ID of the previously-instantiated Accessory, or to 1 if this is the first Accessory. + * the first Accessory instantiated must always have an ID=1 (which is the default if *aid* is unspecified). + * setting the *aid* of the first Accessory to anything but 1 throws an error during initialization. * you must call `homeSpan.begin()` before instantiating any Accessories * example: `new SpanAccessory();`