Skip to content

Releases: teddokano/LEDDriver_NXP_Arduino

1.0.2

27 Feb 01:06
Compare
Choose a tag to compare

Fix of issue 3

_LED class added to avoid conflict with compiling MightyCore. The class name LED conflicts with a global variable. To avoid this, a class derived from LED to let have different name.
The usage of _LED class is just same as LED.
Sample code is available in examples/concept_examples/abstracting_LEDs_in_MightyCore.

1.0.1

29 Dec 07:38
Compare
Choose a tag to compare

document corrections and minor code modifications

1.0.0

12 Jul 04:12
Compare
Choose a tag to compare

Release 1.0.0 :)
Compatible with Arduino UNO R4

0.5.4

23 Jun 05:45
Compare
Choose a tag to compare

document updated

0.5.3

28 May 04:00
Compare
Choose a tag to compare

Fix: SPI frequency setting

0.5.2

28 May 01:40
Compare
Choose a tag to compare

Example code modified to suit more general use

0.5.1

24 May 23:47
Compare
Choose a tag to compare

Gradation control class interface updated to set/clear Hold_ON and Hold_OFF bits. Thank you for your suggestion and contribution, @Flashmueller 😀

Adapting to I2C_device 0.4.0 feature

13 May 00:38
Compare
Choose a tag to compare

I2C_device library release 0.4.0 have a feature of selecting TwoWire instance other than Wire.

From this release, this library can access to the temperature sensor devices on different I²C bus.

To use Wire instance, the interface kept compatibility to previous version. To make an instance of the device, it can be declared like..

#include <PCA9955B.h>
PCA9955B ledd;
#include <PCA9955B.h>
PCA9955B ledd( 0x5F );  // I²C target address is 0x5F

If the device is connected on different I²C bus, it needs to use different TwoWire instance.
In such case, use this new feature :)

#include < PCA9955B.h.h>
PCA9955B.h ledd( Wire1, 0x5F );  // Choosing Wire1 and I²C target address is 0x5F

void setup() {
  Wire1.begin();  // Needs to call "begin()" in Wire1
  ..

0.4.0

06 May 22:04
Compare
Choose a tag to compare
  • Gradation control supported
  • For PCA9957, register access issue fixed

0.3.0

22 Apr 06:24
Compare
Choose a tag to compare

added device name header files