Provides access to button states and events of connected Grabba devices.
This class provides access to the driver's button functionality, which is present on all Grabba devices.
Current hardware models have two buttons - one on the left side of the device, the other on the right. This API may be expanded if future models have additional buttons.
Callbacks to user-provided code may be triggered when the user presses or releases a button on a connected device. Refer to the GrabbaButtonListener class for details of these callbacks and how to enable or disable them.
Alternatively, the button states may be queried directly by calling leftButtonState or rightButtonState.
In addition, each button may be configured to control barcode or proxcard scanning. The default behaviour is to only trigger callbacks, but the setLeftButtonBehaviour and setRightButtonBehaviour methods allow for enabling or disabling press-to-scan functionality.
Some 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) | - init |
Not callable (NS_UNAVAILABLE ) since this is a static class. More... | |
(GrabbaButtonBehaviour) | - leftButtonBehaviour |
Query the current behaviour of the left button. More... | |
(BOOL) | - leftButtonState |
Query the left button state of a connected Grabba device. More... | |
(GrabbaButtonBehaviour) | - rightButtonBehaviour |
Query the current behaviour of the right button. More... | |
(BOOL) | - rightButtonState |
Query the right button state of a connected Grabba device. More... | |
(void) | - setLeftButtonBehaviour: |
Set new behaviour for the left button. More... | |
(void) | - setRightButtonBehaviour: |
Set new behaviour for the right button. More... | |
- (instancetype) init |
Not callable (NS_UNAVAILABLE
) since this is a static class.
- (GrabbaButtonBehaviour) leftButtonBehaviour |
Query the current behaviour of the left button.
- (BOOL) leftButtonState |
Query the left button state of a connected Grabba device.
This is a non-blocking call; the button states are cached internally by the driver.
- (GrabbaButtonBehaviour) rightButtonBehaviour |
Query the current behaviour of the right button.
- (BOOL) rightButtonState |
Query the right button state of a connected Grabba device.
This is a non-blocking call; the button states are cached internally by the driver.
- (void) setLeftButtonBehaviour: | (GrabbaButtonBehaviour) | behaviour |
Set new behaviour for the left button.
behaviour | New behaviour for the left button. GrabbaButtonCallbackOnly is the initial value. |
- (void) setRightButtonBehaviour: | (GrabbaButtonBehaviour) | behaviour |
Set new behaviour for the right button.
behaviour | New behaviour for the right button. GrabbaButtonCallbackOnly is the initial value. |