GY-63_MS5611/libraries/rotaryDecoderSwitch/CHANGELOG.md

64 lines
1.5 KiB
Markdown
Raw Normal View History

2022-11-23 09:30:52 -05:00
# Change Log rotaryDecoderSwitch
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
2024-06-24 10:48:34 -04:00
## [0.3.1] - 2024-06-20
- changed **uint8_t readInitialState()** to return the read state.
- changed **bool setValue(uint8_t re, int32_t value = 0)** to return false
if parameter re is out of range, prevent possible bug.
- changed **int32_t getValue(uint8_t re)** to return 0
if parameter re is out of range, prevent possible bug.
- update readme.md, interface section.
- minor edits
2024-02-23 03:47:51 -05:00
## [0.3.0] - 2024-01-06
- add **read1(pin)** see #10
- add **write1(pin, value)** experimental see #10
- made **read8()** and **write8()** public for faster multi pin access
- removed **getRaw()** use **read8()**
- update readme.md
----
2024-01-06 08:13:22 -05:00
## [0.2.1] - 2024-01-06
2024-02-23 03:47:51 -05:00
- Fix URL in examples
2024-01-06 08:13:22 -05:00
- minor edits
2023-11-21 09:32:11 -05:00
## [0.2.0] - 2023-11-21
- simplify begin() interface - breaking change
- update readme.md
----
2023-09-22 16:03:02 -04:00
## [0.1.4] - 2023-09-22
- add Wire1 support for ESP32
- moved code from .h to .cpp
- update readme.md
- minor edits
2022-11-23 09:30:52 -05:00
## [0.1.3] - 2022-11-23
- add changelog.md
- add RP2040 to build-CI
- fix version number .cpp
- minor edits
## [0.1.2] - 2021-12-27
- update library.json
- update readme.md
- update license
- minor edits
## [0.1.1] - 2021-11-16
- update build-CI, readme.md, badges
- improve readability of code
## [0.1.0] - 2021-05-17
- initial version
2024-02-23 03:47:51 -05:00