From 1a844013b1e04c504051d0042114ea87e8395166 Mon Sep 17 00:00:00 2001 From: Nodeduino Date: Fri, 27 Jan 2017 22:05:16 +0100 Subject: [PATCH] fix README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 56cf476..039bdfb 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A simple and easy to use library for Philips Hue Lights ## How to use ### Finding Bridges If you want to find a Hue Bridge make a HueFinder object and call FindBridges() -it will return a vector containing the ip and mac adress of all found Bridges. +it will return a vector containing the ip and mac address of all found Bridges. If no Bridges were found the vector is empty, so make sure that in that case you provide an ip and mac address. ```C++ HueFinder finder; @@ -25,7 +25,7 @@ if (bridges.empty()) ### Using Bridges If you have found the Bridge you were looking for, you can then move on with the authentication process. To get a new username from the Bridge (for now) you simply call GetBridge(bridges[]), -where index is your preferred Bridge from the part [Finding Bridges](findingBridges). +where index is your preferred Bridge from the part [Finding Bridges](#findingBridges). ```C++ Hue bridge = finder.GetBridge(bridges[0]); ``` -- libgit2 0.21.4