diff --git a/README.md b/README.md index d555e49..25a7db5 100755 --- a/README.md +++ b/README.md @@ -50,11 +50,11 @@ finder.AddUsername(bridges[0].mac, ""); Hue bridge = finder.GetBridge(bridges[0]); ``` If you do not want to use the HueFinder or you already know the ip and username of your bridge you have the option to create your own Hue object. -Here you will need to provide the ip address, a username and an HttpHandler +Here you will need to provide the ip address, the port number, a username and an HttpHandler ```C++ // For windows use std::make_shared(); handler = std::make_shared(); -Hue bridge("192.168.2.102", "", handler); +Hue bridge("192.168.2.102", 80, "", handler); ``` ### Controlling lights