|
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 | + */ |
16 | 27 |
|
17 | 28 | #include <Adafruit_TLC59711.h>
|
18 | 29 | #include <SPI.h>
|
19 | 30 |
|
| 31 | +/*! |
| 32 | + * @brief SPI settings |
| 33 | + * @return Returns nothing |
| 34 | + */ |
20 | 35 | SPISettings SPI_SETTINGS(500000, MSBFIRST, SPI_MODE0);
|
21 | 36 |
|
22 | 37 | /*!
|
|
0 commit comments