Skip to content

Commit 2fe6aeb

Browse files
committed
Updated for release 3.4.0
1 parent d5a7def commit 2fe6aeb

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
IMPORTANT NOTE: For AVR based systems, avr-gcc 4.8.x is supported and tested. This means Arduino 1.6.5 and later.
55

66

7-
FastLED 3.3
7+
FastLED 3.4
88
===========
99

1010
This is a library for easily & efficiently controlling a wide variety of LED chipsets, like the ones

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"type": "git",
3434
"url": "https://github.com/FastLED/FastLED.git"
3535
},
36-
"version": "3.3.3",
36+
"version": "3.4.0",
3737
"license": "MIT",
3838
"homepage": "http://fastled.io",
3939
"frameworks": "arduino",

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FastLED
2-
version=3.3.3
2+
version=3.4.0
33
author=Daniel Garcia
44
maintainer=Daniel Garcia <[email protected]>
55
sentence=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions.

release_notes.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
FastLED 3.4.0
2+
=============
3+
4+
* Improved reliability on ESP32 when wifi is active
5+
* Merged in contributed support for Adafruit boards: QT Py SAMD21, Circuit Playground Express, Circuit Playground Bluefruit, and ItsyBitsy nRF52840 Express
6+
* Merged in contributed support for SparkFun Artemis boards
7+
* Merged in contributed support for Arduino Nano Every / Arduino Uno Wifi Rev. 2
8+
* Merged in contributed support for Seeedstudio Odyssey and XIAO boards
9+
* Merged in contributed support for AVR chips ATmega1284, ATmega4809, and LGT8F328
10+
* XYMatrix example now supports 90-degree rotated orientation
11+
* Moved source code files into "src" subdirectory
12+
* Many small code cleanups and bug fixes
13+
* Released December 2020, with many thanks to everyone contributing to FastLED!
14+
15+
116
FastLED 3.3.3
217
=============
318

src/FastLED.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
#define FASTLED_HAS_PRAGMA_MESSAGE
99
#endif
1010

11-
#define FASTLED_VERSION 3003002
11+
#define FASTLED_VERSION 3004000
1212
#ifndef FASTLED_INTERNAL
1313
# ifdef FASTLED_HAS_PRAGMA_MESSAGE
14-
# pragma message "FastLED version 3.003.003"
14+
# pragma message "FastLED version 3.004.000"
1515
# else
16-
# warning FastLED version 3.003.003 (Not really a warning, just telling you here.)
16+
# warning FastLED version 3.004.000 (Not really a warning, just telling you here.)
1717
# endif
1818
#endif
1919

0 commit comments

Comments
 (0)