Skip to content

Commit 2c4bff6

Browse files
committed
spellcheck typos
1 parent 20bbbf7 commit 2c4bff6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/Example_01_Buzz/Example_01_Buzz.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
By Pete Lewis @ SparkFun Electronics
99
December 2023
1010
11-
Based on code orginally written by Fischer Moseley @ SparkFun Electronics
11+
Based on code originally written by Fischer Moseley @ SparkFun Electronics
1212
Original Creation Date: June 28, 2019
1313
1414
SparkFun code, firmware, and software is released under the MIT License.

examples/Example_05_ChangeI2CAddress/Example_05_ChangeI2CAddress.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void setup() {
5454

5555
if (success) {
5656
if (newAddress > 0x08 && newAddress < 0x77) {
57-
Serial.println("Character recieved, and device address is valid!");
57+
Serial.println("Character received, and device address is valid!");
5858
Serial.print("Attempting to set device address to 0x");
5959
Serial.println(newAddress, HEX);
6060

@@ -102,7 +102,7 @@ void loop() {
102102
for (address = 1; address < 127; address++ )
103103
{
104104
// The i2c_scanner uses the return value of
105-
// the Write.endTransmisstion to see if
105+
// the Write.endTransmission to see if
106106
// a device did acknowledge to the address.
107107
Wire.beginTransmission(address);
108108
error = Wire.endTransmission();

examples/Example_09_FirmwareVersion/Example_09_FirmwareVersion.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
By Pete Lewis @ SparkFun Electronics
77
December 2023
88
9-
Based on code orginally written by Fischer Moseley @ SparkFun Electronics
9+
Based on code originally written by Fischer Moseley @ SparkFun Electronics
1010
Original Creation Date: June 28, 2019
1111
1212
SparkFun code, firmware, and software is released under the MIT License.

0 commit comments

Comments
 (0)