Skip to content

Added the OC pin usage of CH422G #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 104 additions & 0 deletions examples/TestCH422G/TestCH422G.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/**
* | Supported IO Expanders | CH422G |
* | ------------------------- | ------ |
*
* # CH422G Test Example
*
* The hardware device used in this example is waveshare ESP32-S3-Touch-LCD-4.3B-BOX. To test the simultaneous use of I/O input and OC output, connect DO0 to DI0, and connect DO1 to DI1.
*
* ## How to use
*
* 1. Enable USB CDC.
* 2. Verify and upload the example to your board.
*
* ## Serial Output
*
* ```
* ...
* Test begin
* Set the OC pin to push-pull output mode.
* Set the IO0-7 pin to input mode.
* Set pint 8 and 9 to:0, 1
*
* Read pin 0 and 5 level: 0, 1
*
* Set pint 8 and 9 to:1, 0
*
* Read pin 0 and 5 level: 1, 0
* ...
* ```
*
* ## Troubleshooting
*
* The driver initialization by default sets CH422G's IO0-7 to output high-level mode.
Since the input/output mode of CH422G's IO0-7 must remain consistent, the driver will only set IO0-7 to
input mode when it determines that all pins are configured as input.
Using pinMode and multiPinMode will be invalid. You can only set the pin working mode through enableAllIO_Input, enableAllIO_Output, enableOC_PushPull and enableOC_OpenDrain
*
*/

#include <Arduino.h>
#include <ESP_IOExpander_Library.h>

#define EXAMPLE_I2C_NUM (0)
#define EXAMPLE_I2C_SDA_PIN (8)
#define EXAMPLE_I2C_SCL_PIN (9)
#define EXAMPLE_I2C_ADDR (ESP_IO_EXPANDER_I2C_CH422G_ADDRESS) // Modify this value according to the \
// hardware address

ESP_IOExpander_CH422G *expander = NULL;

void setup() {
Serial.begin(115200);
delay(1000);
Serial.println("Test begin");

expander = new ESP_IOExpander_CH422G((i2c_port_t)EXAMPLE_I2C_NUM, EXAMPLE_I2C_ADDR,
EXAMPLE_I2C_SCL_PIN, EXAMPLE_I2C_SDA_PIN);
expander->init();
expander->begin();

/* For CH422G */
Serial.println("Set the OC pin to push-pull output mode.");
static_cast<ESP_IOExpander_CH422G *>(expander)->enableOC_PushPull();

// Serial.println("Set the OC pin to open_drain output mode.");
// static_cast<ESP_IOExpander_CH422G *>(expander)->enableOC_OpenDrain();

Serial.println("Set the IO0-7 pin to input mode.");
static_cast<ESP_IOExpander_CH422G *>(expander)->enableAllIO_Input();

// Serial.println("Set the IO0-7 pin to output mode.");
//static_cast<ESP_IOExpander_CH422G *>(expander)->enableAllIO_Output();
}

int level[2] = { 0, 0 };

void loop() {
for (int i = 0; i < 100; i++) {
bool toggle = i % 2;

Serial.print("Set pint 8 and 9 to:");
Serial.print(toggle);
Serial.print(", ");
Serial.println(!toggle);
Serial.println();

// Set pin 8 and 9 level
expander->digitalWrite(8, toggle);
expander->digitalWrite(9, !toggle);
delay(1);

// Read pin 0 and 5 level
level[0] = expander->digitalRead(0);
level[1] = expander->digitalRead(5);

Serial.print("Read pin 0 and 5 level: ");
Serial.print(level[0]);
Serial.print(", ");
Serial.println(level[1]);
Serial.println();

delay(1000);
}
}
11 changes: 11 additions & 0 deletions examples/TestFunctions/TestFunctions.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#define EXAMPLE_I2C_NUM (0)
#define EXAMPLE_I2C_SDA_PIN (8)
#define EXAMPLE_I2C_SCL_PIN (18)
#define EXAMPLE_I2C_ADDR (ESP_IO_EXPANDER_I2C_TCA9554_ADDRESS_000) // Modify this value according to the
// hardware address

/**
* Create an ESP_IOExpander object, Currently supports:
Expand All @@ -18,9 +20,18 @@ void setup()
Serial.begin(115200);
Serial.println("Test begin");

<<<<<<< HEAD
=======
expander = new EXAMPLE_CHIP_CLASS(EXAMPLE_CHIP_NAME, (i2c_port_t)EXAMPLE_I2C_NUM, EXAMPLE_I2C_ADDR,
EXAMPLE_I2C_SCL_PIN, EXAMPLE_I2C_SDA_PIN);
>>>>>>> a426a76 (Add examples for CH422G)
expander->init();
expander->begin();

/* For CH422G */
// static_cast<ESP_IOExpander_CH422G *>(expander)->enableOC_PushPull();
// static_cast<ESP_IOExpander_CH422G *>(expander)->enableOC_OpenDrain();

Serial.println("Original status:");
expander->printStatus();

Expand Down
Loading