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/07.opta/opta-family/opta/tutorials/18.smart-compressor-app-note/content.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ The Nicla Sense ME leverage it's internal IMU for anomalous vibration detection
98
98
99
99
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.
100
100
101
-
The sensors nominal threshold are difined in the code as follows:
101
+
The sensors nominal threshold are defined in the code as follows:
102
102
103
103
```arduino
104
104
#define CURRENT_LIMIT 12 // in Amps
@@ -221,7 +221,7 @@ void setup() {
221
221
EthernetInit();
222
222
}
223
223
```
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.
225
225
226
226
```arduino
227
227
void loop() {
@@ -271,7 +271,7 @@ void loop() {
271
271
Serial.println("Not BLE Loop");
272
272
273
273
BLE.scan(); // continue scanning for new BLE connection
274
-
SensorRead(); // ADC sensor reading and convertions
274
+
SensorRead(); // ADC sensor reading and conversions
275
275
}
276
276
277
277
ArduinoCloud.update(); // to maintain Cloud connectivity
0 commit comments