can anyone shed any light on the function mouse_movement_send(int16_t x_delta, int16_t y_delta) in latest nrf51 sdk!? how to use it to move pointer on screen n make a left|right click!?
can anyone shed any light on the function mouse_movement_send(int16_t x_delta, int16_t y_delta) in latest nrf51 sdk!? how to use it to move pointer on screen n make a left|right click!?
The function is very simple mouse_movement_send(int16_t x_delta, int16_t y_delta) . You provide x_delta, y_delta and you call the function, the mouse will move to the left x pixel on the horizontal and up y pixel vertically. If you use negative value, you will move in opposite direction.
I'm not sure what else you are asking for.
The function is very simple mouse_movement_send(int16_t x_delta, int16_t y_delta) . You provide x_delta, y_delta and you call the function, the mouse will move to the left x pixel on the horizontal and up y pixel vertically. If you use negative value, you will move in opposite direction.
I'm not sure what else you are asking for.