Commit 5c8e126de699fceac2420ad1ffbb308b1928d5f2

Authored by Moritz Wirger
1 parent 03cf9200

Forgot to udpate part under Authenticate Bridges

Showing 1 changed file with 2 additions and 1 deletions
README.md
@@ -46,7 +46,8 @@ Hue bridge = finder.GetBridge(bridges[0]); @@ -46,7 +46,8 @@ Hue bridge = finder.GetBridge(bridges[0]);
46 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. 46 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.
47 Here you will need to provide the ip address, a username and an HttpHandler 47 Here you will need to provide the ip address, a username and an HttpHandler
48 ```C++ 48 ```C++
49 -handler = std::make_shared<HttpHandler>(); 49 +// For windows use std::make_shared<winHttpHandler>();
  50 +handler = std::make_shared<linHttpHandler>();
50 Hue bridge("192.168.2.102", "<username>", handler); 51 Hue bridge("192.168.2.102", "<username>", handler);
51 ``` 52 ```
52 53