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
+5-7Lines changed: 5 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -270,10 +270,8 @@ It may happen that you used your Nano ESP32 for other projects than Alvik, or yo
270
270
1. Install the micropython bootloader on it following [this guide](https://docs.arduino.cc/micropython/basics/board-installation/).
271
271
272
272
2. Download the Alvik micropyton libraries
273
-
274
-
- Alvik micropython libraries from the [Alvik repository](https://github.com/arduino/arduino-alvik-mpy/tree/main)
275
-
276
-
- ucPack libraries from the [ucPack repository](https://github.com/arduino/ucPack-mpy/tree/main)
273
+
Alvik micropython libraries from the [Alvik repository](https://github.com/arduino/arduino-alvik-mpy/tree/main)
274
+
ucPack libraries from the [ucPack repository](https://github.com/arduino/ucPack-mpy/tree/main)
277
275
278
276
279
277
3. Unzip both of the downloaded libraries in a single "Alvik" folder, open the Arduino Lab for MicroPython, go to the "files" tab and set the path to the unzipped folder on the Arduino Lab for Micropython
@@ -910,7 +908,7 @@ The `get_imu` function from the [Alvik API](https://docs.arduino.cc/tutorials/al
910
908
**p**: pitch value
911
909
**y**: yaw value
912
910
913
-
1. Retrieves 3-axial acceleration values
911
+
2. Retrieves 3-axial acceleration values
914
912
915
913
The [`get_accelerations()`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_accelerations) function returns the 3-axial acceleration of the IMU. This provides the acceleration values along the x, y, and z axes.
916
914
@@ -919,7 +917,7 @@ The `get_imu` function from the [Alvik API](https://docs.arduino.cc/tutorials/al
919
917
**ay**: acceleration on y
920
918
**az**: acceleration on z
921
919
922
-
1. Retrieves 3-axial angular acceleration values
920
+
3. Retrieves 3-axial angular acceleration values
923
921
924
922
The [`get_gyros()`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_gyros) function returns the 3-axial angular acceleration of the IMU. This provides the angular acceleration values along the x, y, and z axes.
925
923
@@ -928,7 +926,7 @@ The `get_imu` function from the [Alvik API](https://docs.arduino.cc/tutorials/al
928
926
**gy**: angular acceleration on y
929
927
**gz**: angular acceleration on z
930
928
931
-
2. Retrieves all IMU readouts including acceleration and angular acceleration
929
+
4. Retrieves all IMU readouts including acceleration and angular acceleration
932
930
933
931
The [`get_imu()`](https://docs.arduino.cc/tutorials/alvik/api-overview/#get_imu) function returns all the IMU's readouts, including both the acceleration and angular acceleration values.
0 commit comments