Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8482f84

Browse files
committedApr 4, 2017
Cleanup of unused pieces of code
1 parent 59c3734 commit 8482f84

File tree

36 files changed

+21
-5906
lines changed

36 files changed

+21
-5906
lines changed
 

‎AslFastPin/PORTING.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,3 @@ The heart of the FastLED library is the fast pin accesss. This is a templated c
1919
There's two low level FastPin classes. There's the base FastPIN template class, and then there is FastPinBB which is for bit-banded access on those MCUs that support bitbanding. Note that the bitband class is optional and primarily useful in the implementation of other functionality internal to the platform. This file is also where you would do the pin to port/bit mapping defines.
2020

2121
Explaining how the macros work and should be used is currently beyond the scope of this document.
22-
23-
== Porting fastspi.h ==
24-
25-
This is where you define the low level interface to the hardware SPI system (including a writePixels method that does a bunch of housekeeping for writing led data). Use the fastspi_nop.h file as a reference for the methods that need to be implemented. There are ofteh other useful methods that can help with the internals of the SPI code, I recommend taking a look at how the various platforms implement their SPI classes.
26-
27-
== Porting clockless.h ==
28-
29-
This is where you define the code for the clockless controllers. Across ARM platforms this will usually be fairly similar - though different arm platforms will have different clock sources that you can/should use.

‎AslFastPin/README.md

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,9 @@
1-
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/FastLED/public)
2-
31
IMPORTANT NOTE: For AVR based systems, avr-gcc 4.8.x is supported and tested. This means Arduino 1.6.5 and later.
42

53

64
FastLED 3.1
75
===========
86

9-
This is a library for easily & efficiently controlling a wide variety of LED chipsets, like the ones
10-
sold by adafruit (Neopixel, DotStar, LPD8806), Sparkfun (WS2801), and aliexpress. In addition to writing to the
11-
leds, this library also includes a number of functions for high-performing 8bit math for manipulating
12-
your RGB values, as well as low level classes for abstracting out access to pins and SPI hardware, while
13-
still keeping things as fast as possible. Tested with Arduino up to 1.6.5 from arduino.cc.
14-
15-
Quick note for people installing from GitHub repo zips, rename the folder FastLED before copying it to your Arduino/libraries folder. Github likes putting -branchname into the name of the folder, which unfortunately, makes Arduino cranky!
16-
17-
We have multiple goals with this library:
18-
19-
* Quick start for new developers - hook up your leds and go, no need to think about specifics of the led chipsets being used
20-
* Zero pain switching LED chipsets - you get some new leds that the library supports, just change the definition of LEDs you're using, et. voila! Your code is running with the new leds.
21-
* High performance - with features like zero cost global brightness scaling, high performance 8-bit math for RGB manipulation, and some of the fastest bit-bang'd SPI support around, FastLED wants to keep as many CPU cycles available for your led patterns as possible
22-
23-
## Getting help
24-
25-
If you need help with using the library, please consider going to the google+ community first, which is at http://fastled.io/+ - there are hundreds of people in that group and many times you will get a quicker answer to your question there, as you will be likely to run into other people who have had the same issue. If you run into bugs with the library (compilation failures, the library doing the wrong thing), or if you'd like to request that we support a particular platform or LED chipset, then please open an issue at http://fastled.io/issues and we will try to figure out what is going wrong.
26-
27-
## Simple example
28-
29-
How quickly can you get up and running with the library? Here's a simple blink program:
30-
31-
#include "FastLED.h"
32-
#define NUM_LEDS 60
33-
CRGB leds[NUM_LEDS];
34-
void setup() { FastLED.addLeds<NEOPIXEL, 6>(leds, NUM_LEDS); }
35-
void loop() {
36-
leds[0] = CRGB::White; FastLED.show(); delay(30);
37-
leds[0] = CRGB::Black; FastLED.show(); delay(30);
38-
}
39-
40-
## Supported LED chipsets
41-
42-
Here's a list of all the LED chipsets are supported. More details on the led chipsets are included *TODO: Link to wiki page*
43-
44-
* Adafruit's DotStars - AKA the APA102
45-
* Adafruit's Neopixel - aka the WS2812B (also WS2811/WS2812/WS2813, also supported in lo-speed mode) - a 3 wire addressable led chipset
46-
* TM1809/4 - 3 wire chipset, cheaply available on aliexpress.com
47-
* TM1803 - 3 wire chipset, sold by radio shack
48-
* UCS1903 - another 3 wire led chipset, cheap
49-
* GW6205 - another 3 wire led chipset
50-
* LPD8806 - SPI based chpiset, very high speed
51-
* WS2801 - SPI based chipset, cheap and widely available
52-
* SM16716 - SPI based chipset
53-
* APA102 - SPI based chipset
54-
* P9813 - aka Cool Neon's Total Control Lighting
55-
* DMX - send rgb data out over DMX using arduino DMX libraries
56-
* SmartMatrix panels - needs the SmartMatrix library - https://github.com/pixelmatix/SmartMatrix
57-
58-
59-
LPD6803, HL1606, and "595"-style shift registers are no longer supported by the library. The older Version 1 of the library ("FastSPI_LED") has support for these, but is missing many of the advanced features of current versions and is no longer being maintained.
60-
61-
627
## Supported platforms
638

649
Right now the library is supported on a variety of arduino compatable platforms. If it's ARM or AVR and uses the arduino software (or a modified version of it to build) then it is likely supported. Note that we have a long list of upcoming platforms to support, so if you don't see what you're looking for here, ask, it may be on the roadmap (or may already be supported). N.B. at the moment we are only supporting the stock compilers that ship with the arduino software. Support for upgraded compilers, as well as using AVR studio and skipping the arduino entirely, should be coming in a near future release.
@@ -73,16 +18,3 @@ Right now the library is supported on a variety of arduino compatable platforms.
7318
* Arduino Zero
7419
* ESP8266 using the arduino board definitions from http://arduino.esp8266.com/stable/package_esp8266com_index.json - please be sure to also read https://github.com/FastLED/FastLED/wiki/ESP8266-notes for information specific to the 8266.
7520
* The wino board - http://wino-board.com
76-
77-
What types of platforms are we thinking about supporting in the future? Here's a short list: ChipKit32, Maple, Beagleboard
78-
79-
## What about that name?
80-
81-
Wait, what happend to FastSPI_LED and FastSPI_LED2? The library was initially named FastSPI_LED because it was focused on very fast and efficient SPI access. However, since then, the library has expanded to support a number of LED chipsets that don't use SPI, as well as a number of math and utility functions for LED processing across the board. We decided that the name FastLED more accurately represents the totality of what the library provides, everything fast, for LEDs.
82-
83-
## For more information
84-
85-
Check out the official site http://fastled.io for links to documentation, issues, and news
86-
87-
88-
*TODO* - get candy

‎AslFastPin/docs/Doxyfile

Lines changed: 0 additions & 2331 deletions
This file was deleted.

‎AslFastPin/docs/mainpage.dox

Lines changed: 0 additions & 10 deletions
This file was deleted.

‎AslFastPin/examples/AnalogOutput/AnalogOutput.ino

Lines changed: 0 additions & 65 deletions
This file was deleted.

‎AslFastPin/examples/Blink/Blink.ino

Lines changed: 0 additions & 54 deletions
This file was deleted.

‎AslFastPin/examples/ColorPalette/ColorPalette.ino

Lines changed: 0 additions & 188 deletions
This file was deleted.

‎AslFastPin/examples/ColorTemperature/ColorTemperature.ino

Lines changed: 0 additions & 85 deletions
This file was deleted.

‎AslFastPin/examples/Cylon/Cylon.ino

Lines changed: 0 additions & 53 deletions
This file was deleted.

‎AslFastPin/examples/DemoReel100/DemoReel100.ino

Lines changed: 0 additions & 126 deletions
This file was deleted.

‎AslFastPin/examples/Fire2012/Fire2012.ino

Lines changed: 0 additions & 105 deletions
This file was deleted.

‎AslFastPin/examples/Fire2012WithPalette/Fire2012WithPalette.ino

Lines changed: 0 additions & 164 deletions
This file was deleted.

‎AslFastPin/examples/FirstLight/FirstLight.ino

Lines changed: 0 additions & 78 deletions
This file was deleted.

‎AslFastPin/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino

Lines changed: 0 additions & 37 deletions
This file was deleted.

‎AslFastPin/examples/Multiple/MirroringSample/MirroringSample.ino

Lines changed: 0 additions & 44 deletions
This file was deleted.

‎AslFastPin/examples/Multiple/MultiArrays/MultiArrays.ino

Lines changed: 0 additions & 52 deletions
This file was deleted.

‎AslFastPin/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino

Lines changed: 0 additions & 34 deletions
This file was deleted.

‎AslFastPin/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino

Lines changed: 0 additions & 37 deletions
This file was deleted.

‎AslFastPin/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino

Lines changed: 0 additions & 47 deletions
This file was deleted.

‎AslFastPin/examples/Noise/Noise.ino

Lines changed: 0 additions & 112 deletions
This file was deleted.

‎AslFastPin/examples/NoisePlayground/NoisePlayground.ino

Lines changed: 0 additions & 73 deletions
This file was deleted.

‎AslFastPin/examples/NoisePlusPalette/NoisePlusPalette.ino

Lines changed: 0 additions & 273 deletions
This file was deleted.

‎AslFastPin/examples/Ports/PJRCSpectrumAnalyzer/PJRCSpectrumAnalyzer.ino

Lines changed: 0 additions & 136 deletions
This file was deleted.

‎AslFastPin/examples/RGBCalibrate/RGBCalibrate.ino

Lines changed: 0 additions & 70 deletions
This file was deleted.

‎AslFastPin/examples/RGBSetDemo/RGBSetDemo.ino

Lines changed: 0 additions & 22 deletions
This file was deleted.

‎AslFastPin/examples/SmartMatrix/SmartMatrix.ino

Lines changed: 0 additions & 121 deletions
This file was deleted.

‎AslFastPin/examples/XYMatrix/XYMatrix.ino

Lines changed: 0 additions & 196 deletions
This file was deleted.

‎AslFastPin/extras/AppleII.s65

Lines changed: 0 additions & 40 deletions
This file was deleted.

‎AslFastPin/extras/FastLED6502.s65

Lines changed: 0 additions & 633 deletions
This file was deleted.

‎AslFastPin/extras/RainbowDemo.bin.zip

-848 Bytes
Binary file not shown.

‎AslFastPin/extras/RainbowDemo.s65

Lines changed: 0 additions & 89 deletions
This file was deleted.

‎AslFastPin/keywords.txt

Lines changed: 13 additions & 349 deletions
Original file line numberDiff line numberDiff line change
@@ -6,362 +6,26 @@
66
# Datatypes (KEYWORD1)
77
#######################################
88

9-
CFastLED KEYWORD1
10-
CHSV KEYWORD1
11-
CRGB KEYWORD1
12-
LEDS KEYWORD1
13-
FastLED KEYWORD1
149
FastPin KEYWORD1
15-
FastSPI KEYWORD1
16-
FastSPI_LED2 KEYWORD1
17-
18-
CRGBPalette16 KEYWORD1
19-
CRGBPalette256 KEYWORD1
20-
CHSVPalette16 KEYWORD1
21-
CHSVPalette256 KEYWORD1
22-
CHSVPalette16 KEYWORD1
23-
CHSVPalette256 KEYWORD1
24-
CRGBPalette16 KEYWORD1
25-
CRGBPalette256 KEYWORD1
2610

2711
#######################################
2812
# Methods and Functions (KEYWORD2)
2913
#######################################
3014

31-
# FastLED methods
32-
addLeds KEYWORD2
33-
setBrightness KEYWORD2
34-
getBrightness KEYWORD2
35-
show KEYWORD2
36-
clear KEYWORD2
37-
showColor KEYWORD2
38-
setTemperature KEYWORD2
39-
setCorrection KEYWORD2
40-
setDither KEYWORD2
41-
countFPS KEYWORD2
42-
getFPS KEYWORD2
43-
44-
# Noise methods
45-
inoise16_raw KEYWORD2
46-
inoise8_raw KEYWORD2
47-
inoise16 KEYWORD2
48-
inoise8 KEYWORD2
49-
fill_2dnoise16 KEYWORD2
50-
fill_2dnoise8 KEYWORD2
51-
fill_noise16 KEYWORD2
52-
fill_noise8 KEYWORD2
53-
fill_raw_2dnoise16 KEYWORD2
54-
fill_raw_2dnoise16into8 KEYWORD2
55-
fill_raw_2dnoise8 KEYWORD2
56-
fill_raw_noise16into8 KEYWORD2
57-
fill_raw_noise8 KEYWORD2
58-
59-
# Lib8tion methods
60-
qadd8 KEYWORD2
61-
qadd7 KEYWORD2
62-
qsub8 KEYWORD2
63-
add8 KEYWORD2
64-
sub8 KEYWORD2
65-
scale8 KEYWORD2
66-
scale8_video KEYWORD2
67-
cleanup_R1 KEYWORD2
68-
nscale8x3 KEYWORD2
69-
nscale8x3_video KEYWORD2
70-
nscale8x2 KEYWORD2
71-
nscale8x2_video KEYWORD2
72-
scale16by8 KEYWORD2
73-
scale16by8 KEYWORD2
74-
scale16 KEYWORD2
75-
mul8 KEYWORD2
76-
qmul8 KEYWORD2
77-
abs8 KEYWORD2
78-
dim8_raw KEYWORD2
79-
dim8_video KEYWORD2
80-
dim8_lin KEYWORD2
81-
brighten8_raw KEYWORD2
82-
brighten8_video KEYWORD2
83-
brighten8_lin KEYWORD2
84-
random8 KEYWORD2
85-
random16 KEYWORD2
86-
random8 KEYWORD2
87-
random8 KEYWORD2
88-
random16 KEYWORD2
89-
random16 KEYWORD2
90-
random16_set_seed KEYWORD2
91-
random16_get_seed KEYWORD2
92-
random16_add_entropy KEYWORD2
93-
sin16_avr KEYWORD2
94-
sin16 KEYWORD2
95-
cos16 KEYWORD2
96-
sin8 KEYWORD2
97-
cos8 KEYWORD2
98-
lerp8by8 KEYWORD2
99-
lerp16by16 KEYWORD2
100-
lerp16by8 KEYWORD2
101-
lerp15by8 KEYWORD2
102-
lerp15by16 KEYWORD2
103-
map8 KEYWORD2
104-
ease8InOutQuad KEYWORD2
105-
ease8InOutCubic KEYWORD2
106-
ease8InOutApprox KEYWORD2
107-
ease8InOutApprox KEYWORD2
108-
triwave8 KEYWORD2
109-
quadwave8 KEYWORD2
110-
cubicwave8 KEYWORD2
111-
sqrt16 KEYWORD2
112-
113-
# Color util methods
114-
blend KEYWORD2
115-
nblend KEYWORD2
116-
ColorFromPalette KEYWORD2
117-
HeatColor KEYWORD2
118-
UpscalePalette KEYWORD2
119-
blend KEYWORD2
120-
fadeLightBy KEYWORD2
121-
fadeToBlackBy KEYWORD2
122-
fade_raw KEYWORD2
123-
fade_video KEYWORD2
124-
fill_gradient KEYWORD2
125-
fill_gradient_RGB KEYWORD2
126-
fill_palette KEYWORD2
127-
fill_rainbow KEYWORD2
128-
fill_solid KEYWORD2
129-
map_data_into_colors_through_palette KEYWORD2
130-
nblend KEYWORD2
131-
nscale8 KEYWORD2
132-
nscale8_video KEYWORD2
133-
134-
# HSV methods
135-
hsv2grb_rainbow KEYWORD2
136-
hsv2rgb_spectrum KEYWORD2
137-
hsv2rgb_raw KEYWORD2
138-
fill_solid KEYWORD2
139-
fill_rainbow KEYWORD2
140-
141-
# Colors
142-
CRGB::AliceBlue KEYWORD2
143-
CRGB::Amethyst KEYWORD2
144-
CRGB::AntiqueWhite KEYWORD2
145-
CRGB::Aqua KEYWORD2
146-
CRGB::Aquamarine KEYWORD2
147-
CRGB::Azure KEYWORD2
148-
CRGB::Beige KEYWORD2
149-
CRGB::Bisque KEYWORD2
150-
CRGB::Black KEYWORD2
151-
CRGB::BlanchedAlmond KEYWORD2
152-
CRGB::Blue KEYWORD2
153-
CRGB::BlueViolet KEYWORD2
154-
CRGB::Brown KEYWORD2
155-
CRGB::BurlyWood KEYWORD2
156-
CRGB::CadetBlue KEYWORD2
157-
CRGB::Chartreuse KEYWORD2
158-
CRGB::Chocolate KEYWORD2
159-
CRGB::Coral KEYWORD2
160-
CRGB::CornflowerBlue KEYWORD2
161-
CRGB::Cornsilk KEYWORD2
162-
CRGB::Crimson KEYWORD2
163-
CRGB::Cyan KEYWORD2
164-
CRGB::DarkBlue KEYWORD2
165-
CRGB::DarkCyan KEYWORD2
166-
CRGB::DarkGoldenrod KEYWORD2
167-
CRGB::DarkGray KEYWORD2
168-
CRGB::DarkGreen KEYWORD2
169-
CRGB::DarkKhaki KEYWORD2
170-
CRGB::DarkMagenta KEYWORD2
171-
CRGB::DarkOliveGreen KEYWORD2
172-
CRGB::DarkOrange KEYWORD2
173-
CRGB::DarkOrchid KEYWORD2
174-
CRGB::DarkRed KEYWORD2
175-
CRGB::DarkSalmon KEYWORD2
176-
CRGB::DarkSeaGreen KEYWORD2
177-
CRGB::DarkSlateBlue KEYWORD2
178-
CRGB::DarkSlateGray KEYWORD2
179-
CRGB::DarkTurquoise KEYWORD2
180-
CRGB::DarkViolet KEYWORD2
181-
CRGB::DeepPink KEYWORD2
182-
CRGB::DeepSkyBlue KEYWORD2
183-
CRGB::DimGray KEYWORD2
184-
CRGB::DodgerBlue KEYWORD2
185-
CRGB::FireBrick KEYWORD2
186-
CRGB::FloralWhite KEYWORD2
187-
CRGB::ForestGreen KEYWORD2
188-
CRGB::Fuchsia KEYWORD2
189-
CRGB::Gainsboro KEYWORD2
190-
CRGB::GhostWhite KEYWORD2
191-
CRGB::Gold KEYWORD2
192-
CRGB::Goldenrod KEYWORD2
193-
CRGB::Gray KEYWORD2
194-
CRGB::Green KEYWORD2
195-
CRGB::GreenYellow KEYWORD2
196-
CRGB::Honeydew KEYWORD2
197-
CRGB::HotPink KEYWORD2
198-
CRGB::IndianRed KEYWORD2
199-
CRGB::Indigo KEYWORD2
200-
CRGB::Ivory KEYWORD2
201-
CRGB::Khaki KEYWORD2
202-
CRGB::Lavender KEYWORD2
203-
CRGB::LavenderBlush KEYWORD2
204-
CRGB::LawnGreen KEYWORD2
205-
CRGB::LemonChiffon KEYWORD2
206-
CRGB::LightBlue KEYWORD2
207-
CRGB::LightCoral KEYWORD2
208-
CRGB::LightCyan KEYWORD2
209-
CRGB::LightGoldenrodYellow KEYWORD2
210-
CRGB::LightGreen KEYWORD2
211-
CRGB::LightGrey KEYWORD2
212-
CRGB::LightPink KEYWORD2
213-
CRGB::LightSalmon KEYWORD2
214-
CRGB::LightSeaGreen KEYWORD2
215-
CRGB::LightSkyBlue KEYWORD2
216-
CRGB::LightSlateGray KEYWORD2
217-
CRGB::LightSteelBlue KEYWORD2
218-
CRGB::LightYellow KEYWORD2
219-
CRGB::Lime KEYWORD2
220-
CRGB::LimeGreen KEYWORD2
221-
CRGB::Linen KEYWORD2
222-
CRGB::Magenta KEYWORD2
223-
CRGB::Maroon KEYWORD2
224-
CRGB::MediumAquamarine KEYWORD2
225-
CRGB::MediumBlue KEYWORD2
226-
CRGB::MediumOrchid KEYWORD2
227-
CRGB::MediumPurple KEYWORD2
228-
CRGB::MediumSeaGreen KEYWORD2
229-
CRGB::MediumSlateBlue KEYWORD2
230-
CRGB::MediumSpringGreen KEYWORD2
231-
CRGB::MediumTurquoise KEYWORD2
232-
CRGB::MediumVioletRed KEYWORD2
233-
CRGB::MidnightBlue KEYWORD2
234-
CRGB::MintCream KEYWORD2
235-
CRGB::MistyRose KEYWORD2
236-
CRGB::Moccasin KEYWORD2
237-
CRGB::NavajoWhite KEYWORD2
238-
CRGB::Navy KEYWORD2
239-
CRGB::OldLace KEYWORD2
240-
CRGB::Olive KEYWORD2
241-
CRGB::OliveDrab KEYWORD2
242-
CRGB::Orange KEYWORD2
243-
CRGB::OrangeRed KEYWORD2
244-
CRGB::Orchid KEYWORD2
245-
CRGB::PaleGoldenrod KEYWORD2
246-
CRGB::PaleGreen KEYWORD2
247-
CRGB::PaleTurquoise KEYWORD2
248-
CRGB::PaleVioletRed KEYWORD2
249-
CRGB::PapayaWhip KEYWORD2
250-
CRGB::PeachPuff KEYWORD2
251-
CRGB::Peru KEYWORD2
252-
CRGB::Pink KEYWORD2
253-
CRGB::Plaid KEYWORD2
254-
CRGB::Plum KEYWORD2
255-
CRGB::PowderBlue KEYWORD2
256-
CRGB::Purple KEYWORD2
257-
CRGB::Red KEYWORD2
258-
CRGB::RosyBrown KEYWORD2
259-
CRGB::RoyalBlue KEYWORD2
260-
CRGB::SaddleBrown KEYWORD2
261-
CRGB::Salmon KEYWORD2
262-
CRGB::SandyBrown KEYWORD2
263-
CRGB::SeaGreen KEYWORD2
264-
CRGB::Seashell KEYWORD2
265-
CRGB::Sienna KEYWORD2
266-
CRGB::Silver KEYWORD2
267-
CRGB::SkyBlue KEYWORD2
268-
CRGB::SlateBlue KEYWORD2
269-
CRGB::SlateGray KEYWORD2
270-
CRGB::Snow KEYWORD2
271-
CRGB::SpringGreen KEYWORD2
272-
CRGB::SteelBlue KEYWORD2
273-
CRGB::Tan KEYWORD2
274-
CRGB::Teal KEYWORD2
275-
CRGB::Thistle KEYWORD2
276-
CRGB::Tomato KEYWORD2
277-
CRGB::Turquoise KEYWORD2
278-
CRGB::Violet KEYWORD2
279-
CRGB::Wheat KEYWORD2
280-
CRGB::White KEYWORD2
281-
CRGB::WhiteSmoke KEYWORD2
282-
CRGB::Yellow KEYWORD2
283-
CRGB::YellowGreen KEYWORD2
284-
15+
# FastPin methods
16+
fastset KEYWORD2
17+
hi KEYWORD2
18+
hival KEYWORD2
19+
lo KEYWORD2
20+
loval KEYWORD2
21+
mask KEYWORD2
22+
port KEYWORD2
23+
set KEYWORD2
24+
setInput KEYWORD2
25+
setOutput KEYWORD2
26+
strobe KEYWORD2
27+
toggle KEYWORD2
28528

28629
#######################################
28730
# Constants (LITERAL1)
28831
#######################################
289-
290-
# Chipsets
291-
LPD8806 LITERAL1
292-
WS2801 LITERAL1
293-
WS2803 LITERAL1
294-
P9813 LITERAL1
295-
SM16716 LITERAL1
296-
APA102 LITERAL1
297-
DMXSERIAL LITERAL1
298-
DMXSIMPLE LITERAL1
299-
TM1829 LITERAL1
300-
TM1809 LITERAL1
301-
TM1804 LITERAL1
302-
TM1803 LITERAL1
303-
APA104 LITERAL1
304-
WS2811 LITERAL1
305-
WS2812 LITERAL1
306-
WS2812B LITERAL1
307-
WS2811_400 LITERAL1
308-
WS2813 LITERAL1
309-
NEOPIXEL LITERAL1
310-
UCS1903 LITERAL1
311-
UCS1903B LITERAL1
312-
GW6205 LITERAL1
313-
GW6205B LITERAL1
314-
LPD1886 LITERAL1
315-
316-
# RGB orderings
317-
RGB LITERAL1
318-
RBG LITERAL1
319-
GRB LITERAL1
320-
GBR LITERAL1
321-
BRG LITERAL1
322-
BGR LITERAL1
323-
324-
# hue literals
325-
HUE_RED LITERAL1
326-
HUE_ORANGE LITERAL1
327-
HUE_YELLOW LITERAL1
328-
HUE_GREEN LITERAL1
329-
HUE_AQUA LITERAL1
330-
HUE_BLUE LITERAL1
331-
HUE_PURPLE LITERAL1
332-
HUE_PINK LITERAL1
333-
334-
# Color correction values
335-
TypicalSMD5050 LITERAL1
336-
TypicalLEDStrip LITERAL1
337-
Typical8mmPixel LITERAL1
338-
TypicalPixelString LITERAL1
339-
UncorrectedColor LITERAL1
340-
Candle LITERAL1
341-
Tungsten40W LITERAL1
342-
Tungsten100W LITERAL1
343-
Halogen LITERAL1
344-
CarbonArc LITERAL1
345-
HighNoonSun LITERAL1
346-
DirectSunlight LITERAL1
347-
OvercastSky LITERAL1
348-
ClearBlueSky LITERAL1
349-
WarmFluorescent LITERAL1
350-
StandardFluorescent LITERAL1
351-
CoolWhiteFluorescent LITERAL1
352-
FullSpectrumFluorescent LITERAL1
353-
GrowLightFluorescent LITERAL1
354-
BlackLightFluorescent LITERAL1
355-
MercuryVapor LITERAL1
356-
SodiumVapor LITERAL1
357-
MetalHalide LITERAL1
358-
HighPressureSodium LITERAL1
359-
UncorrectedTemperature LITERAL1
360-
361-
# Color util literals
362-
FORWARD_HUES LITERAL1
363-
BACKWARD_HUES LITERAL1
364-
SHORTEST_HUES LITERAL1
365-
LONGEST_HUES LITERAL1
366-
LINEARBLEND LITERAL1
367-
NOBLEND LITERAL1

‎AslFastPin/library.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

‎AslFastPin/library.properties

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name=FastLED
2-
version=3.1.3
3-
author=Daniel Garcia
4-
maintainer=Daniel Garcia <dgarcia@fastled.io>
5-
sentence=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions.
6-
paragraph=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions.
7-
category=Display
8-
url=https://github.com/FastLED/FastLED
1+
name=AslFastPin
2+
version=1.0.0
3+
author=Julian Sanin
4+
maintainer=Julian Sanin <sanin89julian@gmail.com>
5+
sentence=Faster pins for Arduino.
6+
paragraph=Faster pin access for Arduino and Arduino compatible boards.
7+
category=Uncategorized
8+
url=https://github.com/j54n1n/arduino-libraries
99
architectures=*

‎AslFastPin/preview_changes.txt

Lines changed: 0 additions & 19 deletions
This file was deleted.

‎AslFastPin/release_notes.md

Lines changed: 0 additions & 154 deletions
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.