Version 1.2.0
Features
Version 1.1.6
Features
Bug fixes:
- Add virtual destrubtor to DebounedButton to it may be derived from in user code.
Version 1.1.5
Features
Bug fixes:
Version 1.1.4
Features
- NamedPersistentSetting template class in case you wish to attach a string identifier to your PersistenSettings.
- Accessor functions for PersistenSettings minimum, maximum and default values.
Bug fixes:
- PersistentSettings.save saveIt parameter now functions we desired.
Version 1.1.3
Features
Version 1.1.2
Features:
- FreeRam() function provides platform-independent interface to getting free memory.
Other:
- Cosmetic and documentation improvements.
- Better library.json for PlatformIO.
Version 1.1.1
Bug fix release.
Features:
Bug fixes:
- Fixed broken ESP build caused by incomplete move to types from stdint.h.
- Fix broken build of DFPReader on ESP8266 (work-around ESP8266 library fmod bug).
Other
- Much cleanup and improvements in consistency of example code.
- Arduino 1.5 library compatibility.
Version 1.1.0
This release is primarily to address the Millis wrap problem, but I ended up bundling some other changes in there too. A few classes have changed, which could potentially break compatibility with existing sketches, but only for classes which are probably only used internally, like RawButton which doesn't make a lot of sense to use in an end-user sketch.
Features
- Implement MillisSince and DoEvery in Millis.h to address Millis wrap problem.
- Use new functions throughout Mutila code and examples.
- Improved documentation.
- Move to using stdint.h types rather than simple int and friends, for more consistent behaviour across platforms.
- New ModeManager class and example.
- Changed a lot of #defined globals into static const variables in appropriate classes to clean up the global name-space; removed Mutila.h.
- Created and documented standard test rig using a Nano, DFPlayer Mini, potential divider, two buttons and a sonic ranger module.
- Rearranged button hierarchy. New AbstractButton and AbstractDebouncedButton classes help reduce duplicated code. Three basic immediate button types (which don't need a time slice):
Bug fixes
- Heartbeat::Mode On mode now doesn't continuously switch LED on and off every update().
- Fix Mode::update() with interval set calling too many times immediately after Mode startup.