Skip to content

Commit 27ebb84

Browse files
committed
Minor content linter patch
1 parent 5eee8b5 commit 27ebb84

File tree

1 file changed

+3
-3
lines changed
  • content/hardware/07.opta/opta-family/opta/tutorials/18.smart-compressor-app-note

1 file changed

+3
-3
lines changed

content/hardware/07.opta/opta-family/opta/tutorials/18.smart-compressor-app-note/content.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The Nicla Sense ME leverage it's internal IMU for anomalous vibration detection
9898

9999
Every sensor will be used for anomalies detection, if any measured variable exceeds its nominal range an anomaly alert will show up in the Arduino Cloud dashboard.
100100

101-
The sensors nominal threshold are difined in the code as follows:
101+
The sensors nominal threshold are defined in the code as follows:
102102

103103
```arduino
104104
#define CURRENT_LIMIT 12 // in Amps
@@ -221,7 +221,7 @@ void setup() {
221221
EthernetInit();
222222
}
223223
```
224-
In the `loop()` function, the WiFi and BLE connections are verified continuosly alongside the sensor readings.
224+
In the `loop()` function, the WiFi and BLE connections are verified continuously alongside the sensor readings.
225225

226226
```arduino
227227
void loop() {
@@ -271,7 +271,7 @@ void loop() {
271271
Serial.println("Not BLE Loop");
272272
273273
BLE.scan(); // continue scanning for new BLE connection
274-
SensorRead(); // ADC sensor reading and convertions
274+
SensorRead(); // ADC sensor reading and conversions
275275
}
276276
277277
ArduinoCloud.update(); // to maintain Cloud connectivity

0 commit comments

Comments
 (0)