Provides access to Grabba RFID/proximity card (proxcard) functionality, such as triggering proxcard scans.
Callbacks to user-provided code may be triggered in response to relevant events, e.g. successful scan of a proxcard. Refer to the GrabbaProxcardListener class for the details of these callbacks and how to enable them.
Calls to this class will not succeed until a connection to a Grabba device has been established. Refer to the GrabbaCoreAPI class for details of how to establish or query this connection.
Thread safety: This class is fully thread-safe.
Instance Methods | |
(instancetype _Nullable) | - init |
Not callable (NS_UNAVAILABLE ) since this is a static class. More... | |
Class Methods | |
(void) | + startScanWithError: |
Start an asynchronous proxcard scan. More... | |
(void) | + stopScanWithBlocking:error: |
Cancel an existing proxcard scan. More... | |
(BOOL) | + supported |
Query whether there is currently a connected Grabba device with proxcard functionality. More... | |
- (instancetype _Nullable) init |
Not callable (NS_UNAVAILABLE
) since this is a static class.
+ (void) startScanWithError: | (GrabbaErrorCode *_Nonnull) | error |
Start an asynchronous proxcard scan.
If the supplied error code indicates no prior errors, there is a connected Grabba device with proxcard capabilities, and no proxcard scan is currently active, then a proxcard scan will be commenced.
If a proxcard scan is already active, or a prior error is indicated, then no action is taken, and the error code will not be updated.
If there is no connection, or if the connected Grabba device lacks proxcard capabilities, then the error code will be updated accordingly.
If the scan is commenced, then the GrabbaNoError code is returned, and the proxcard reader will attempt to scan a card. There are four possible outcomes:
Note that any error conditions detected during the scan will not be reported by this function (as it is non-blocking). Instead, feedback is given by way of callbacks to active GrabbaProxcardListener objects. Each such object will receive a Start event when the scan process commences, a Stop event when it completes (regardless of the reason), and may give Data, Error or Timeout events depending on the outcome of the scan.
For reader modules which support concurrent scanning of multiple tags, there may also be additional Data events - e.g. if four tags are all within the scanning field, and all are read within the timeout period, then four Data events and one Stop event will be triggered.
error | Error code; operation proceeds only if set to GrabbaNoError. If an error is detected when starting the operation, then this will be updated with the details. |
+ (void) stopScanWithBlocking: | (BOOL) | blocking | |
error: | (GrabbaErrorCode *_Nonnull) | error | |
Cancel an existing proxcard scan.
If the supplied error code indicates no prior errors, there is a connected Grabba device with proxcard capabilities, and a proxcard scan is currently active, then that scan will be cancelled. The error code will be updated if any errors are detected during the cancellation.
If no proxcard scan is currently active, or a prior error is indicated, then no action is taken, and the error code will not be updated.
If there is no connection, or if the connected Grabba device lacks proxcard capabilities, then the error code will be updated accordingly.
blocking |
|
error | Error code; operation proceeds only if set to GrabbaNoError. If an error is detected during the operation, then this will be updated with the details. |
+ (BOOL) supported |
Query whether there is currently a connected Grabba device with proxcard functionality.
This is a non-blocking call; device capabilities are cached internally by the driver.