Skip to content

Releases: Fattoresaimon/ArduinoDuPPaLib

v1.4.1

12 Mar 20:17
Compare
Choose a tag to compare

Fixed some bug in the RGB Ring examples.
This version woks with:

v1.4.0

02 Feb 07:51
Compare
Choose a tag to compare

Changed the LED Ring library in order to avoid conflicts with other library

v1.3.0

05 May 15:25
Compare
Choose a tag to compare

Added the I2CEncoderMini library
Bug fixing

v1.2.0

25 Mar 15:07
Compare
Choose a tag to compare

Changelog:

  • Parameter INT2 is changed to INT_2. Conflict with the board Arduino Mega

  • All the enum are moved inside of the i2cEncoderLibV2 class. In this way there are no conflicts with other classes with same parameter.
    Example of change:
    Before:

    Encoder.begin(INT_DATA |WRAP_DISABLE | DIRE_LEFT | IPUP_ENABLE | RMOD_X1 | RGB_ENCODER);

    Now:

    Encoder.begin(
      i2cEncoderLibV2::INT_DATA | i2cEncoderLibV2::WRAP_DISABLE
      | i2cEncoderLibV2::DIRE_LEFT | i2cEncoderLibV2::IPUP_ENABLE
      | i2cEncoderLibV2::RMOD_X1 | i2cEncoderLibV2::RGB_ENCODER);

v1.1.0: Library update

13 Mar 13:16
Compare
Choose a tag to compare

Changed the callback definition.
Removed the methods attachInterrupt() and deattachInterrupt(), and changed with 16 events property.

Examples Update

02 Mar 20:15
Compare
Choose a tag to compare
Merge branch 'master' of https://github.com/Fattoresaimon/ArduinoDuPP…

…aLib

First release

02 Mar 17:27
6680768
Compare
Choose a tag to compare

New version of the I2C Encoder V2 library!

  • Added the support for the Callback