gesture_recognition.h has the following definition:
typedef enum { GESTURE_DOUBLE_TAP = 1, /**< The mobile device is tapped twice */ GESTURE_MOVE_TO_EAR, /**< The mobile device is moved near to an ear */ GESTURE_NO_MOVE, /**< The mobile device is being stopped for a while */ GESTURE_PICK_UP, /**< The mobile device is picked up */ GESTURE_SHAKE, /**< The mobile device is quickly moved back and forth */ GESTURE_SNAP, /**< The mobile device is moved along an axis and back */ GESTURE_TILT, /**< The mobile device is tilted */ GESTURE_TURN_FACE_DOWN, /**< The mobile device is flipped from face to back */ GESTURE_WRIST_UP, /**< The wearable device is moved and faced up */ } gesture_type_e;
When I used gesture_is_supported() to see if each of these gestures is supported, the only two that resulted in supported set to true were GESTURE_PICK_UP and GESTURE_WRIST_UP.
Does it mean that the S3 watch doesn't recognize/support all the rest?