PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.8KB

  1. 2009-05-07
  2. - Added support for the Arduino Mega
  3. 2009-04-19
  4. - Bug fix in tlc_fades.h (incrementing a pointer after removing something
  5. from the fadeBuffer array). Also tlc_updateFades() will wait till after
  6. an update if it's just removed the last fade.
  7. - Updated the core function documentation.
  8. 2009-03-05
  9. - Fixed the missing pin definitions for the ATmega328p
  10. 2009-02-16
  11. - Added tlc_servos.h and example (thank you Steve Pomeroy)
  12. - Cleaned up some older documentation
  13. - Added trailing newlines to c, h, cpp, and pde files
  14. 2009-02-03
  15. - Added support for the Sanguino (ATmega xx4 series)
  16. - Added support for the ATmega 8
  17. - Moved the project to Google Code:
  18. http://code.google.com/p/tlc5940arduino/
  19. - Fixed a bug in tlc_fades.h: assignment of struct arrays
  20. - Cleaned up the whitespace in the library: 4 spaces instead of tabs
  21. 2009-01-25
  22. - Added tlc_fades.h
  23. - Added include "tlc_config.h" to Tlc5940.h so it's not required
  24. in the sketch
  25. - Added Tlc.setAll(value)
  26. - Changed a few for loops in Tlc5940.cpp: used *p++ instead of having
  27. p++ in the increment section of the for loop; changed to while loops
  28. 2008-11-26
  29. - Tlc.init() sets all channels to zero and updates.
  30. - Added TLC_PWM_PERIOD and TLC_GSCLK_PERIOD to tlc_config.h
  31. - Added TLC_CHANNEL_TYPE to tlc_config.h - Adds support for up to 4096 TLCs.
  32. (if TLC_CHANNEL_TYPE is uint16_t)
  33. - Changed the examples to use TLC_CHANNEL_TYPE
  34. - set DATA_TRANSFER_MODE default to TLC_SPI
  35. 2008-11-11
  36. - Added tlc_animations.h and examples
  37. - Fixed SPI mode - (don't use enums as constants
  38. "#if A == 1" doesn't work)
  39. 2008-10-31
  40. - Initial Release