Releases: sparkfun/SparkFun_Qwiic_RFID_Arduino_Library
Fixes compiler warning
This small update fixes the compiler warning about requestFrom(address, bytes)
being called in an unknown way. This was caused by the bytes
parameter not explicitly being given a type when passed as an argument to the function. The solution was a static cast
of the parameter to uint8_t
.
Fixes bug in getAllTags
Internal function was incorrectly call 20 sets of 20 bytes, instead of 20 sets of 10 bytes
Example code in "example" folder
This release fixes the example folder being name incorrectly (capital "E", instead of "e") and should populate correctly in the Arduino IDE.
Fixes typecast bug
v1.1.3 Rolls version to v1.1.3
Adds clearTags function and fixes negative scan times
Adds function to clear the 20 tag ID buffer on the Qwiic RFID reader with the function call: clearTags()
. This update also hopefully fixes negative time stamp bug attached to some RFID tag scans.
Fixes minor typos
Fixes minor spacing typos in example code.
Initial Release
The SparkFun Qwiic RFID Arduino Library makes it very easy to use the Qwiic enabled I-squared-C RFID reader from SparkFun Electronics. The SparkFun Qwiic RFID Reader can hold up to 20 scanned RFID tags and their associated scan times at a time. The library gives easy to use functions that allow you to get a scanned tag, get the tag's scan time, or get all 20 available tags and their scan times at once. Also provided is example code to demonstrate each available function.