Skip to content

Commit 6154e47

Browse files
Apply suggestions from code review
Co-authored-by: Karl Söderby <[email protected]>
1 parent 51b09e0 commit 6154e47

File tree

1 file changed

+2
-2
lines changed
  • content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer

1 file changed

+2
-2
lines changed

content/hardware/03.nano/boards/nano-33-ble/tutorials/imu-accelerometer/content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Include the LSM9DS1 library at the top of your sketch:
9595
#include <Arduino_LSM9DS1.h>
9696
```
9797

98-
**Initialize variables before the `setup()` function:**
98+
Initialize variables before the `setup()` function:
9999

100100
```arduino
101101
#define MINIMUM_TILT 5 // Threshold for tilt detection in degrees
@@ -107,7 +107,7 @@ int angleY = 0;
107107
unsigned long previousMillis = 0;
108108
```
109109

110-
**In the `setup()`, initialize the IMU and start serial communication:**
110+
In the `setup()`, initialize the IMU and start serial communication:
111111

112112
```arduino
113113
void setup() {

0 commit comments

Comments
 (0)