Skip to content

Commit 3abf2c5

Browse files
committed
Fix comments
1 parent fb01f58 commit 3abf2c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/Example1_BasicReadWrite/Example1_BasicReadWrite.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ void setup()
5252
// myMem.setMemoryType(16);
5353

5454
// Default to the Qwiic 24xx512 EEPROM: https://www.sparkfun.com/products/14764
55-
myMem.setMemoryType(512); // Valid types: 24xx00, 0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048
55+
myMem.setMemoryType(512); // Valid types: 0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048
5656

5757
if (myMem.begin() == false)
5858
{

examples/Example2_AdvancedI2C/Example2_AdvancedI2C.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
This library supports EEPROMs with any I2C address and
1414
any Wire hardware (Wire1, Wire2, etc) by passing them into begin.
1515
16-
For this example the I2C EEPROM should have all its ADR0 to VCC,
16+
For this example, the I2C EEPROM should have all its ADR0 to VCC,
1717
ADR1 to GND, and ADR2 to GND.
1818
1919
Hardware Connections:

examples/Example7_InterfaceTest/Example7_InterfaceTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void setup()
4242

4343
//Set the memory specs
4444
//Default to the Qwiic 24xx512 EEPROM: https://www.sparkfun.com/products/14764
45-
myMem.setMemoryType(512); // Valid types: 24xx00, 01, 02, 04, 08, 16, 32, 64, 128, 256, 512, 1024, 2048
45+
myMem.setMemoryType(512); // Valid types: 0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048
4646

4747
if (myMem.begin() == false)
4848
{

0 commit comments

Comments
 (0)