Skip to content

[MKC-1910] Updated formating for function list #2214

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -599,42 +599,42 @@ The Arduino Alvik robot is equipped with several touch buttons that can be used

- Detect **any** button pressed.

The `[get_touch_any](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_any)` function returns true if any of the buttons is pressed.
[`get_touch_any`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_any) function returns true if any of the buttons is pressed.


- Detect the **OK** button pressed.

The `[get_touch_ok](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_ok)` function returns true if the OK button is pressed.
[`get_touch_ok`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_ok) function returns true if the OK button is pressed.


- Detect the **Cancel** button pressed.

The `[get_touch_cancel](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_cancel)` function returns true if the Cancel button is pressed.
[`get_touch_cancel`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_cancel) function returns true if the Cancel button is pressed.


- Detect the **Center** button pressed.

The `[get_touch_center](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_center)` function returns true if the Center button is pressed.
[`get_touch_center`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_center) function returns true if the Center button is pressed.


- Detect the **Up** button pressed.

The `[get_touch_up](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_up)` function returns true if the Up button is pressed.
[`get_touch_up`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_up) function returns true if the Up button is pressed.


- Detect the **Left** button pressed.

The `[get_touch_left](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_left)` function returns true if the Left button is pressed.
[`get_touch_left`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_left) function returns true if the Left button is pressed.


- Detect the **Down** button pressed.

The `[get_touch_down](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_down)` function returns true if the Down button is pressed.
[`get_touch_down`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_down) function returns true if the Down button is pressed.


- Detect the **Right** button pressed.

The `[get_touch_right](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_right)` function returns true if the Right button is pressed.
[`get_touch_right`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_right) function returns true if the Right button is pressed.


**Example**
Expand Down
Loading