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!?
mouse_movement_send only sends mouse movement. You need to look into the code of the function where we call ble_hids_boot_mouse_inp_rep_send(). x_delta and y_delta is the number of horizontal and vertical pixel from the current position of the mouse that the mouse need to move.
mouse_movement_send only sends mouse movement. You need to look into the code of the function where we call ble_hids_boot_mouse_inp_rep_send(). x_delta and y_delta is the number of horizontal and vertical pixel from the current position of the mouse that the mouse need to move.