Class BLEHIDMouse

Description

A class used for creating and managing a BLE HID Mouse.

Syntax

class BLEHIDMouse

Members

Public Constructors

BLE HIDMouse::BLEHIDMouse

Constructs a BLEHIDMouse object

Public Methods

BLE HIDMouse::setReportID

Set HID report ID for the HID Mouse

BLE HIDMouse::mouseReport

Send a HID Mouse report

BL EHIDMouse::mousePress

Send a HID Mouse report indicating buttons pressed

BLEH IDMouse::mouseRelease

Send a HID Mouse report indicating buttons released

BLEHIDM ouse::mouseReleaseAll

Send a HID Mouse report indicating no buttons pressed

B LEHIDMouse::mouseMove

Send a HID Mouse report indicating mouse movement

BLE HIDMouse::mouseScroll

Send a HID Mouse report indicating mouse scroll wheel movement


BLEHIDMouse::BLEHIDMouse

Description

Constructs a BLEHIDMouse object.

Syntax

BLEHIDMouse::BLEHIDMouse();

Parameters

The function requires no input parameter.

Returns

The function returns nothing.

Example Code

Example: BLEHIDMouse

Notes and Warnings

NA


BLEHIDMouse::setReportID

Description

Set HID report ID for the HID Mouse.

Syntax

void setReportID (uint8_t reportID);

Parameters

reportID : The report ID for the HID mouse device, corresponding to the HID report descriptor.

Returns

The function returns nothing.

Example Code

NA

Notes and Warnings

NA


BLEHIDMouse::mouseReport

Description

Send a HID Mouse report.

Syntax

void mouseReport (hid_mouse_report_t* report);
void mouseReport (uint8_t buttons, int8_t x, int8_t y, int8_t scroll);

Parameters

report : pointer to mouse report structure containing data on mouse inputs

buttons : bitmap indicating state of each button. 1 = pressed, 0 = released.

x : mouse x-axis movement. Integer value from -127 to 127.

y : mouse y-axis movement. Integer value from -127 to 127.

scroll : mouse scroll wheel movement. Integer value from -127 to 127.

Returns

The function returns nothing.

Example Code

NA

Notes and Warnings

NA


BLEHIDMouse::mousePress

Description

Send a HID Mouse report indicating buttons pressed.

Syntax

void mousePress (uint8_t buttons);

Parameters

buttons : bitmap indicating buttons pressed. 1 = pressed.

Returns

The function returns nothing.

Example Code

Example: BLEHIDMouse

Notes and Warnings

NA


BLEHIDMouse::mouseRelease

Description

Send a HID Mouse report indicating buttons released.

Syntax

void mouseRelease (uint8_t buttons);

Parameters

buttons : bitmap indicating buttons released. 1 = released.

Returns

The function returns nothing.

Example Code

Example: BLEHIDMouse

Notes and Warnings

NA


BLEHIDMouse::mouseReleaseAll

Description

Send a HID Mouse report indicating no buttons pressed.

Syntax

void mouseReleaseAll(void);

Parameters

The function requires no input parameter.

Returns

The function returns nothing.

Example Code

NA

Notes and Warnings

NA


BLEHIDMouse::mouseMove

Description

Send a HID Mouse report indicating mouse movement.

Syntax

void mouseMove (int8_t x, int8_t y);

Parameters

x : mouse x-axis movement. Integer value from -127 to 127.

y : mouse y-axis movement. Integer value from -127 to 127.

Returns

The function returns nothing.

Example Code

Example: BLEHIDMouse

Notes and Warnings

NA


BLEHIDMouse::mouseScroll

Description

Send a HID Mouse report indicating mouse scroll wheel movement.

Syntax

void mouseScroll (int8_t scroll);

Parameters

scroll : mouse scroll wheel movement. Integer value from -127 to 127.

Returns

The function returns nothing.

Example Code

Example: BLEHIDMouse

Notes and Warnings

NA