v1.10.0 - Animation Looping
What's Changed
- Bug Fix: Changed
abs()
to long int supportedlabs()
inshowNumber()
method by @KelevraSlevin7 in #33 which fixes overflow situation seen on some cores for showNumber() - Added option for non-blocking animation to allow looping sequence via
Animate(true)
and added method to stop animation withstopAnimation()
forTM1637TinyDisplay
andTM1637TinyDisplay6
classes.
//! The event loop function to enable non-blocking animations
//!
//! The method returns TRUE when an animation is still occurring, it is
//! FALSE when there is no animation occurring
//!
//! @return A boolean value indicating if an animation is occurring
//! @param loop If true, keep looping animation when it ends
bool Animate(bool loop = false);
//! The function used to stop a non-blocking animation
//!
void stopAnimation();
New Contributors
- @KelevraSlevin7 made their first contribution in #33
Full Changelog: v1.9.0...v1.10.0