Skip to content

Commit 926dac5

Browse files
committed
update imu on mkr iot carrier
1 parent 5e9e6e1 commit 926dac5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tech-specs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Connectors: 3x Grove connectors
77
Sensors:
88
HTS221: Temperature & humidity
99
LPS22HB: Barometric pressure
10-
LSM6DSOX: Accelerometer & gyroscope
10+
LSM6DS3: Accelerometer & gyroscope
1111
APDS-9960: Ambient light, gesture and proximity
1212
Capacitive buttons: 5x
1313
Actuators:

content/hardware/01.mkr/03.carriers/mkr-iot-carrier/tutorials/mkr-iot-carrier-01-technical-reference/mkr-iot-carrier-01-technical-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ Returns pressure value in Kilopascal (kPa).
157157

158158
![The IMU on the MKR IoT Carrier](assets/mkrIotCarrier-sensor-imu.png)
159159

160-
The **LSM6DSOXTR** from STM is an IMU (Inertial Measurement Unit) that features a 3D digital accelerometer and a 3D digital gyroscope. It features among many other things, a machine learning core, which is useful for any motion detection projects, such as free fall, step detector, step counter, pedometer. The unit is placed underneath the MKR IoT Carrier's display, connects to the mounted Arduino MKR board through an I2C interface, and acquires Low power consumption (0.55mA max).
160+
The **LSM6DS3** from STM is an IMU (Inertial Measurement Unit) that features a 3D digital accelerometer and a 3D digital gyroscope.
161161

162162
### Code
163163

164-
To access the data from the **LSM6DSOX module**, the **MKRIoTCarrier** library needs to be included. The carrier's library includes the **Arduino_LSM6DS3** and functions similarly. The 3-axis values from the **accelerometer** and **gyroscope** sensors can be stored in **float** variables as shown below:
164+
To access the data from the **LSM6DS3 module**, the **MKRIoTCarrier** library needs to be included. The carrier's library includes the **Arduino_LSM6DS3** and functions similarly. The 3-axis values from the **accelerometer** and **gyroscope** sensors can be stored in **float** variables as shown below:
165165

166166
```arduino
167167
float x, y, z;

0 commit comments

Comments
 (0)