File tree Expand file tree Collapse file tree 3 files changed +55
-4
lines changed Expand file tree Collapse file tree 3 files changed +55
-4
lines changed Original file line number Diff line number Diff line change 4
4
# SPDX-License-Identifier: MIT
5
5
6
6
"""
7
- `adafruit_tlc59711`.
8
-
7
+ `adafruit_tlc59711`
9
8
====================================================
10
9
11
10
CircuitPython module for the
28
27
* The API is mostly compatible to the DotStar / NeoPixel Libraries
29
28
and is therefore also compatible with FancyLED.
30
29
31
- * Adafruit CircuitPython firmware for the ESP8622, M0 or M4-based boards:
32
- https://github.com/adafruit/circuitpython/releases
30
+ * Adafruit CircuitPython firmware for the supported boards:
31
+ https://circuitpython.org/downloads
33
32
"""
34
33
__version__ = "0.0.0-auto.0"
35
34
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_TLC59711.git"
Original file line number Diff line number Diff line change @@ -6,3 +6,53 @@ Ensure your device works with this simple test.
6
6
.. literalinclude :: ../examples/tlc59711_simpletest.py
7
7
:caption: examples/tlc59711_simpletest.py
8
8
:linenos:
9
+
10
+
11
+ FancyLED
12
+ ------------
13
+
14
+ this is an example for combining the TLC5957 library with FancyLED.
15
+ Enjoy the colors :-)
16
+
17
+ .. literalinclude :: ../examples/tlc59711_fancyled.py
18
+ :caption: examples/tlc59711_fancyled.py
19
+ :linenos:
20
+
21
+
22
+ Animations Example
23
+ ------------------
24
+
25
+ You should have a plethora of functions to animate your lights.
26
+
27
+ .. literalinclude :: ../examples/tlc59711_dev.py
28
+ :caption: examples/tlc59711_dev.py
29
+ :linenos:
30
+
31
+
32
+ Single Chip Autoshow
33
+ --------------------
34
+
35
+ This makes it very slow on lots of pixel changes but is convenient for only a handful of pixels.
36
+
37
+ .. literalinclude :: ../examples/tlc59711_singlechip_autoshow.py
38
+ :caption: examples/tlc59711_singlechip_autoshow.py
39
+ :linenos:
40
+
41
+
42
+ Brightness Correction Data
43
+ --------------------------
44
+
45
+ Test brightness correction data (BC)
46
+
47
+ .. literalinclude :: ../examples/tlc59711_simpletest.py
48
+ :caption: examples/tlc59711_simpletest.py
49
+ :linenos:
50
+
51
+ Fastset test
52
+ ------------
53
+
54
+ Showcases the usage of set_pixel_16bit_value for fastest setting of values.
55
+
56
+ .. literalinclude :: ../examples/tlc59711_fastset.py
57
+ :caption: examples/tlc59711_fastset.py
58
+ :linenos:
Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ Table of Contents
23
23
.. toctree ::
24
24
:caption: Tutorials
25
25
26
+ Adafruit 12-Channel 16-bit PWM LED Driver - SPI Interface - TLC59711 Learning Guide <https://learn.adafruit.com/tlc5947-tlc59711-pwm-led-driver-breakout/downloads-and-links >
27
+
26
28
.. toctree ::
27
29
:caption: Related Products
28
30
You can’t perform that action at this time.
0 commit comments