Skip to content

Commit 3e489c8

Browse files
authored
Merge pull request #16 from adafruit/doxy-fix
Fixed doxygen index page
2 parents 75d9a02 + 2b1dbe1 commit 3e489c8

File tree

1 file changed

+30
-15
lines changed

1 file changed

+30
-15
lines changed

Adafruit_TLC59711.cpp

+30-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
1-
/***************************************************
2-
This is a library for our Adafruit 12-channel PWM/LED driver
3-
4-
Pick one up today in the adafruit shop!
5-
------> http://www.adafruit.com/products/1455
6-
7-
Two SPI Pins are required to send data: clock and data pin.
8-
9-
Adafruit invests time and resources providing this open source code,
10-
please support Adafruit and open-source hardware by purchasing
11-
products from Adafruit!
12-
13-
Written by Limor Fried/Ladyada for Adafruit Industries.
14-
BSD license, all text above must be included in any redistribution
15-
****************************************************/
1+
/*!
2+
* @file Adafruit_TLC59711.cpp
3+
*
4+
* @mainpage Adafruit TLC59711 PWM/LED driver
5+
*
6+
* @section intro_sec Introduction
7+
*
8+
* This is a library for our Adafruit 12-channel PWM/LED driver
9+
*
10+
* Pick one up today in the adafruit shop!
11+
* ------> http://www.adafruit.com/products/1455
12+
*
13+
* Two SPI Pins are required to send data: clock and data pin.
14+
*
15+
* Adafruit invests time and resources providing this open source code,
16+
* please support Adafruit and open-source hardware by purchasing
17+
* products from Adafruit!
18+
*
19+
* @section author Author
20+
*
21+
* Written by Limor Fried/Ladyada for Adafruit Industries.
22+
*
23+
* @section license License
24+
*
25+
* BSD license, all text above must be included in any redistribution
26+
*/
1627

1728
#include <Adafruit_TLC59711.h>
1829
#include <SPI.h>
1930

31+
/*!
32+
* @brief SPI settings
33+
* @return Returns nothing
34+
*/
2035
SPISettings SPI_SETTINGS(500000, MSBFIRST, SPI_MODE0);
2136

2237
/*!

0 commit comments

Comments
 (0)