Releases: RobTillaart/SparseMatrix
Releases · RobTillaart/SparseMatrix
0.2.0 release
- fix #8, readme.md badges and more
- add bounding box functions
- bool boundingBoxX(uint8_t &minX, uint8_t &maxX)
- bool boundingBoxY(uint8_t &minY, uint8_t &maxY)
- add traversing
- bool first(uint8_t &x, uint8_t &y, float &value)
- bool next(uint8_t &x, uint8_t &y, float &value)
- bool prev(uint8_t &x, uint8_t &y, float &value)
- bool last(uint8_t &x, uint8_t &y, float &value)
- add example sparse_matrix_traverse.ino
- add low level API
- int32_t findPosition(uint8_t x, uint8_t y)
- float getValue(uint16_t position)
- **bool setValue(uint16_t position, float value);
- int compact()
0.1.6 release
- update GitHub actions
- minor edits
0.1.5 release
update readme.md
0.1.4 release
add changelog.md (#7)
0.1.3 release
add boundingBox (#6) * add boundingBox * fix #4 optimize set/add * update readme.md
0.1.2 release
increase size (#3) * increase size to 16 bit * improve build-CI * update documentation an examples
0.1.1 release
fix set() + add add() + clear() (#2) * fix set() + add add() + clear()
0.1.0 release
initial version (#1) * initial version