Commit c57ebb4575037fa71a3d06c1996455c55cf8f51e

Authored by Moritz Wirger
Committed by Jan
1 parent 0f96438e

Add Doxygen link and LGTM to README

Showing 1 changed file with 6 additions and 8 deletions
README.md
1 1 # hueplusplus
2 2 A simple and easy to use library for Philips Hue Lights
3 3  
4   -| Branch | Travis CI | Codecov | Codacy |
5   -|:-|:-|:-|:-|
6   -| [Master](https://github.com/enwi/hueplusplus/tree/master) | [![Build Status](https://travis-ci.com/enwi/hueplusplus.svg?branch=master)](https://travis-ci.com/enwi/hueplusplus) | [![codecov](https://codecov.io/gh/enwi/hueplusplus/branch/master/graph/badge.svg)](https://codecov.io/gh/enwi/hueplusplus) | [![Codacy Badge](https://api.codacy.com/project/badge/Grade/558c343dddf4418c85a4b2d52538be04?branch=master)](https://www.codacy.com/app/enwi/hueplusplus?utm_source=github.com&utm_medium=referral&utm_content=enwi/hueplusplus&utm_campaign=Badge_Grade) |
7   -| [Development](https://github.com/enwi/hueplusplus/tree/development) | [![Build Status](https://travis-ci.com/enwi/hueplusplus.svg?branch=development)](https://travis-ci.com/enwi/hueplusplus) | [![codecov](https://codecov.io/gh/enwi/hueplusplus/branch/development/graph/badge.svg)](https://codecov.io/gh/enwi/hueplusplus) | [![Codacy Badge](https://api.codacy.com/project/badge/Grade/558c343dddf4418c85a4b2d52538be04?branch=development)](https://www.codacy.com/app/enwi/hueplusplus?utm_source=github.com&utm_medium=referral&utm_content=enwi/hueplusplus&utm_campaign=Badge_Grade) |
  4 +| Branch | Travis CI | Codecov | Codacy | LGTM
  5 +|:-|:-|:-|:-|:-|
  6 +| [Master](https://github.com/enwi/hueplusplus/tree/master) | [![Build Status](https://travis-ci.com/enwi/hueplusplus.svg?branch=master)](https://travis-ci.com/enwi/hueplusplus) | [![codecov](https://codecov.io/gh/enwi/hueplusplus/branch/master/graph/badge.svg)](https://codecov.io/gh/enwi/hueplusplus) | [![Codacy Badge](https://api.codacy.com/project/badge/Grade/558c343dddf4418c85a4b2d52538be04?branch=master)](https://www.codacy.com/app/enwi/hueplusplus?utm_source=github.com&utm_medium=referral&utm_content=enwi/hueplusplus&utm_campaign=Badge_Grade) | [![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/enwi/hueplusplus.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/enwi/hueplusplus/context:cpp) |
  7 +| [Development](https://github.com/enwi/hueplusplus/tree/development) | [![Build Status](https://travis-ci.com/enwi/hueplusplus.svg?branch=development)](https://travis-ci.com/enwi/hueplusplus) | [![codecov](https://codecov.io/gh/enwi/hueplusplus/branch/development/graph/badge.svg)](https://codecov.io/gh/enwi/hueplusplus) | [![Codacy Badge](https://api.codacy.com/project/badge/Grade/558c343dddf4418c85a4b2d52538be04?branch=development)](https://www.codacy.com/app/enwi/hueplusplus?utm_source=github.com&utm_medium=referral&utm_content=enwi/hueplusplus&utm_campaign=Badge_Grade) | |
8 8  
9 9 ## Features
10 10 * find bridges with SSDP or set an ip manually
11 11 * function to assign a username or set one manually
12 12 * all common light functions (brightness, color, temperature)
13 13 * extended alert() functions, which alert in a specific color (good for notifications)
14   -* documented with doxygen
  14 +* [documented with doxygen](https://enwi.github.io/hueplusplus/)
15 15 * tested with google test, google mock and gcov/lcov
16 16  
17 17 ## Compatibility
... ... @@ -95,9 +95,7 @@ light1.hasColorControl();
95 95 These will either return true(light has specified function) or false(light lacks specified function).
96 96  
97 97 ### Further reading
98   -If you want to know more about all functions just look inside the doxygen description,
99   -which for now can be found in the regarding sourcecode file or create the documentation
100   -with the provided Doxyfile yourself.
  98 +If you want to know more about all functions just look inside the doxygen documentation. It can be found [here](https://enwi.github.io/hueplusplus/)
101 99  
102 100 ## Build and install
103 101 ### Basic installation
... ...