From 8591b2575a026321f6e8662ccd1297eb5e0326a8 Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Tue, 22 Jun 2021 21:15:38 -0500 Subject: [PATCH] Update Categories.md --- docs/Categories.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Categories.md b/docs/Categories.md index e462d68..af9ad96 100644 --- a/docs/Categories.md +++ b/docs/Categories.md @@ -1,6 +1,6 @@ # HomeSpan Accessory Categories -Every HomeSpan device must be assigned a HomeKit Accessory Category. HomeSpan implements these categories as C++ Classes with names that exactly match the spelling and capitalization specified by Apple in Section 13 of [HAP-R2](https://developer.apple.com/support/homekit-accessory-protocol/), but without any spaces. HomeSpan Accessory Categories are defined in HomeSpan's `Category` namespace. For example, HomeSpan defines the *Garage Door Openers* Category (HAP Category 4) as `Category::GarageDoorOpeners`, which could be used when initializing HomeSpan as follows: +Every HomeSpan device must be assigned a HomeKit Accessory Category. HomeSpan implements these categories as C++ Classes with names that exactly match the spelling and capitalization specified by Apple in Section 13 of [HAP-R2](https://developer.apple.com/homekit/specification/), but without any spaces. HomeSpan Accessory Categories are defined in HomeSpan's `Category` namespace. For example, HomeSpan defines the *Garage Door Openers* Category (HAP Category 4) as `Category::GarageDoorOpeners`, which could be used when initializing HomeSpan as follows: ```C++ homeSpan.begin(Category::GarageDoorOpeners,"Acme Garage Door Lifts");