You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/08.edu/solution-and-kits/alvik/tutorials/user-manual/user-manual.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -581,56 +581,56 @@ The Arduino Alvik robot is equipped with several touch buttons that can be used
581
581
582
582
1. Detect **any** button pressed.
583
583
584
-
The `get_touch_any` function returns true if any of the buttons is pressed.
584
+
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.
585
585
586
586
**Outputs:**
587
587
-`touch_any`: true if any button is pressed, false otherwise.
588
588
589
589
2. Detect the **OK** button pressed.
590
590
591
-
The `get_touch_ok` function returns true if the OK button is pressed.
591
+
The `[get_touch_ok](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_ok)` function returns true if the OK button is pressed.
592
592
593
593
**Outputs:**
594
594
-`touch_ok`: true if OK button is pressed, false otherwise.
595
595
596
596
3. Detect the **Cancel** button pressed.
597
597
598
-
The `get_touch_cancel` function returns true if the Cancel button is pressed.
598
+
The `[get_touch_cancel](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_cancel)` function returns true if the Cancel button is pressed.
599
599
600
600
**Outputs:**
601
601
-`touch_cancel`: true if Cancel button is pressed, false otherwise.
602
602
603
603
4. Detect the **Center** button pressed.
604
604
605
-
The `get_touch_center` function returns true if the Center button is pressed.
605
+
The `[get_touch_center](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_center)` function returns true if the Center button is pressed.
606
606
607
607
**Outputs:**
608
608
-`touch_center`: true if Center button is pressed, false otherwise.
609
609
610
610
5. Detect the **Up** button pressed.
611
611
612
-
The `get_touch_up` function returns true if the Up button is pressed.
612
+
The `[get_touch_up](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_up)` function returns true if the Up button is pressed.
613
613
614
614
**Outputs:**
615
615
-`touch_up`: true if Up button is pressed, false otherwise.
616
616
617
617
6. Detect the **Left** button pressed.
618
618
619
-
The `get_touch_left` function returns true if the Left button is pressed.
619
+
The `[get_touch_left](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_left)` function returns true if the Left button is pressed.
620
620
621
621
**Outputs:**
622
622
-`touch_left`: true if Left button is pressed, false otherwise.
623
623
624
624
7. Detect the **Down** button pressed.
625
625
626
-
The `get_touch_down` function returns true if the Down button is pressed.
626
+
The `[get_touch_down](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_down)` function returns true if the Down button is pressed.
627
627
628
628
**Outputs:**
629
629
-`touch_down`: true if Down button is pressed, false otherwise.
630
630
631
631
8. Detect the **Right** button pressed.
632
632
633
-
The `get_touch_right` function returns true if the Right button is pressed.
633
+
The `[get_touch_right](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_touch_right)` function returns true if the Right button is pressed.
634
634
635
635
**Outputs:**
636
636
-`touch_right`: true if Right button is pressed, false otherwise.
0 commit comments