1
0
Fork 0

Fixed the indentation of the sample code in feature_pointing_device docs (#9177)

* Fixed the indentation of the sample code in docs/feature_pointing_device.md sample.

* Update docs/feature_pointing_device.md

Co-authored-by: Joel Challis <git@zvecr.com>

Co-authored-by: Joel Challis <git@zvecr.com>
This commit is contained in:
Takeshi ISHII 2020-05-24 07:57:59 +09:00 committed by GitHub
parent 503cf18aed
commit f66680d233
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,14 +28,11 @@ In the following example, a custom key is used to click the mouse and scroll 127
```c ```c
case MS_SPECIAL: case MS_SPECIAL:
report_mouse_t currentReport = pointing_device_get_report(); report_mouse_t currentReport = pointing_device_get_report();
if (record->event.pressed) if (record->event.pressed) {
{
currentReport.v = 127; currentReport.v = 127;
currentReport.h = 127; currentReport.h = 127;
currentReport.buttons |= MOUSE_BTN1; // this is defined in report.h currentReport.buttons |= MOUSE_BTN1; // this is defined in report.h
} } else {
else
{
currentReport.v = -127; currentReport.v = -127;
currentReport.h = -127; currentReport.h = -127;
currentReport.buttons &= ~MOUSE_BTN1; currentReport.buttons &= ~MOUSE_BTN1;