Browse Source

document

tags/v0.6.4
wolfv6 7 years ago
parent
commit
76b9e4efd3

+ 1
- 1
examples/IOE_PCA9655E_development/PCA9655E_1_write_read/PCA9655E_1_write_read.ino View File

@@ -24,7 +24,7 @@ const uint8_t ADDR = 0x18; //I2C address with AD2=GND AD1=S
void setup()
{
delay(1000);
Serial.print("PCA9655E_read.ino");
Serial.print("PCA9655E_1_read.ino");
Wire.begin();

//Configure port 1 to output

+ 1
- 1
examples/IOE_PCA9655E_development/PCA9655E_2_scan/PCA9655E_2_scan.ino View File

@@ -22,7 +22,7 @@ const uint8_t ADDR = 0x18; //I2C address with AD2=GND AD1=S
void setup()
{
delay(1000);
Serial.print("PCA9655E_read.ino");
Serial.print("PCA9655E_2_read.ino");
Wire.begin();

//Configure port 1 to output

+ 1
- 1
examples/IOE_PCA9655E_development/PCA9655E_3_scan_lib/PCA9655E_3_scan_lib.ino View File

@@ -33,7 +33,7 @@ Scanner_IOE scanner_R(HIGH, port1, port0);
void setup()
{
delay(6000);
Keyboard.print("PCA9655E_scan.ino");
Keyboard.print("PCA9655E_3_scan.ino");

scanner_R.begin();


+ 1
- 1
examples/IOE_PCA9655E_development/PCA9655E_4_scan_loop/PCA9655E_4_scan_loop.ino View File

@@ -33,7 +33,7 @@ Scanner_IOE scanner_R(HIGH, port1, port0);
void setup()
{
delay(6000);
Keyboard.println("PCA9655E_scan_loop.ino");
Keyboard.println("PCA9655E_scan_4_loop.ino");

scanner_R.begin();
}