Skip to content
Permalink
Browse files
Updated for release 3.4.0
  • Loading branch information
kriegsman committed Dec 22, 2020
1 parent d5a7def commit 2fe6aeb
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
@@ -4,7 +4,7 @@
IMPORTANT NOTE: For AVR based systems, avr-gcc 4.8.x is supported and tested. This means Arduino 1.6.5 and later.


FastLED 3.3
FastLED 3.4
===========

This is a library for easily & efficiently controlling a wide variety of LED chipsets, like the ones
@@ -33,7 +33,7 @@
"type": "git",
"url": "https://github.com/FastLED/FastLED.git"
},
"version": "3.3.3",
"version": "3.4.0",
"license": "MIT",
"homepage": "http://fastled.io",
"frameworks": "arduino",
@@ -1,5 +1,5 @@
name=FastLED
version=3.3.3
version=3.4.0
author=Daniel Garcia
maintainer=Daniel Garcia <dgarcia@fastled.io>
sentence=Multi-platform library for controlling dozens of different types of LEDs along with optimized math, effect, and noise functions.
@@ -1,3 +1,18 @@
FastLED 3.4.0
=============

* Improved reliability on ESP32 when wifi is active
* Merged in contributed support for Adafruit boards: QT Py SAMD21, Circuit Playground Express, Circuit Playground Bluefruit, and ItsyBitsy nRF52840 Express
* Merged in contributed support for SparkFun Artemis boards
* Merged in contributed support for Arduino Nano Every / Arduino Uno Wifi Rev. 2
* Merged in contributed support for Seeedstudio Odyssey and XIAO boards
* Merged in contributed support for AVR chips ATmega1284, ATmega4809, and LGT8F328
* XYMatrix example now supports 90-degree rotated orientation
* Moved source code files into "src" subdirectory
* Many small code cleanups and bug fixes
* Released December 2020, with many thanks to everyone contributing to FastLED!


FastLED 3.3.3
=============

@@ -8,12 +8,12 @@
#define FASTLED_HAS_PRAGMA_MESSAGE
#endif

#define FASTLED_VERSION 3003002
#define FASTLED_VERSION 3004000
#ifndef FASTLED_INTERNAL
# ifdef FASTLED_HAS_PRAGMA_MESSAGE
# pragma message "FastLED version 3.003.003"
# pragma message "FastLED version 3.004.000"
# else
# warning FastLED version 3.003.003 (Not really a warning, just telling you here.)
# warning FastLED version 3.004.000 (Not really a warning, just telling you here.)
# endif
#endif

0 comments on commit 2fe6aeb

Please sign in to comment.