Skip to content

Commit 9c064d8

Browse files
committed
Correct typos in comments and documentation
1 parent c168405 commit 9c064d8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

examples/PhysicsLabFirmware/PhysicsLabFirmware.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ void setup() {
8181
digitalWrite(RESISTANCE_AUX_PIN, LOW);
8282

8383
if (!INA226.begin(0x45)) {
84-
Serial.println("Failled to initialized INA226!");
84+
Serial.println("Failed to initialized INA226!");
8585

8686
while (1);
8787
}
8888

8989
if (!imu.begin()) {
90-
Serial.println("Failled to initialized IMU!");
90+
Serial.println("Failed to initialized IMU!");
9191

9292
while (1);
9393
}
@@ -97,7 +97,7 @@ void setup() {
9797
imu.setupGyro(imu.LSM9DS1_GYROSCALE_245DPS);
9898

9999
if (!BLE.begin()) {
100-
Serial.println("Failled to initialized BLE!");
100+
Serial.println("Failed to initialized BLE!");
101101

102102
while (1);
103103
}

extras/BLE_spec BLE Sense Firmware.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
BLE Sense - BLE specifications.txt
22
==================================
33

4-
GAP (Adversisement)
4+
GAP (Advertisement)
55
-------------------
66
Local name: BLESense - <last 4 characters of BT address>
7-
Serivice UUID: 555a0002-0000-467a-9538-01f0652c74e8
7+
Service UUID: 555a0002-0000-467a-9538-01f0652c74e8
88

99

1010
GATT

extras/BLE_spec MKR Science Kit Firmware.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ MKR Science Kit Firmware - BLE specifications.txt
22
=================================================
33

44

5-
GAP (Adversisement)
5+
GAP (Advertisement)
66
-------------------
77
Local name: MKRSci<last 4 characters of BT address>
8-
Serivice UUID: 555a0001-0000-467a-9538-01f0652c74e8
8+
Service UUID: 555a0001-0000-467a-9538-01f0652c74e8
99

1010

1111
GATT
@@ -114,7 +114,7 @@ UUID: 555a0001-5001-467a-9538-01f0652c74e8
114114
Properties: notify
115115
Value size: 12 bytes
116116
Data format: Array of 3 x 32-bit IEEE floats (little endian)
117-
Description: X, Y, Z acceleration values in G's, if subscribed notification sent every 10 ms
117+
Description: X, Y, Z acceleration values in g's, if subscribed notification sent every 10 ms
118118

119119
Gyroscope Characteristic
120120
~~~~~~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)