Releases: Fattoresaimon/ArduinoDuPPaLib
Releases · Fattoresaimon/ArduinoDuPPaLib
v1.4.1
Fixed some bug in the RGB Ring examples.
This version woks with:
v1.4.0
Changed the LED Ring library in order to avoid conflicts with other library
v1.3.0
Added the I2CEncoderMini library
Bug fixing
v1.2.0
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
Changed the callback definition.
Removed the methods attachInterrupt() and deattachInterrupt(), and changed with 16 events property.
Examples Update
v1.0.1 Merge branch 'master' of https://github.com/Fattoresaimon/ArduinoDuPP…
First release
New version of the I2C Encoder V2 library!
- Added the support for the Callback