![]() |
[arduino code examples for A32 Pro]-01 Turn ON/OFF relay - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=20) +--- Forum: KC868-A32/A32 Pro (https://www.kincony.com/forum/forumdisplay.php?fid=27) +--- Thread: [arduino code examples for A32 Pro]-01 Turn ON/OFF relay (/showthread.php?tid=6680) |
[arduino code examples for A32 Pro]-01 Turn ON/OFF relay - admin - 09-13-2024 Code: /* ![]() BIN file (you can use esp32 download tool download to ESP32-S3 with address 0x0 then directly to use) download: ![]() RE: [arduino code examples for A32 Pro]-01 Turn ON/OFF relay - daniela - 12-27-2024 ho provato questo codice con kc868 A32 e i led della scheda rimangono accesi e gli ingressi non funzionano RE: [arduino code examples for A32 Pro]-01 Turn ON/OFF relay - admin - 12-28-2024 take some photos, how you did. RE: [arduino code examples for A32 Pro]-01 Turn ON/OFF relay - daniela - 12-29-2024 /* Made by KinCony IoT: https://www.kincony.com Program functionality: This program uses ESP32-S3 to control two PCA9555 I/O expander chips via I2C, controlling a total of 32 relays. The first PCA9555 chip has an I2C address of 0x21 and controls relays 1-16, while the second PCA9555 chip has an I2C address of 0x22 and controls relays 17-32. The relays are turned ON (set to low) and OFF (set to high) in sequence with a small delay between each operation. The program reads and prints the current state of the relays to the serial monitor after each change. */ #include <PCA95x5.h> // Initialize two PCA9555 objects for controlling 32 relays PCA9555 ioex1; // 1-16 relays (I2C address 0x21) PCA9555 ioex2; // 17-32 relays (I2C address 0x22) void setup() { // Start serial communication for debugging Serial.begin(115200); delay(10); // Initialize the I2C bus with GPIO 11 as SDA and GPIO 10 as SCL, 100kHz frequency Wire.begin(11, 10, 100000); // Configure the first PCA9555 chip (1-16 relays) ioex1.attach(Wire, 0x21); // Set I2C address to 0x21 ioex1.polarity(PCA95x5: ![]() ioex1.direction(PCA95x5: ![]() ioex1.write(PCA95x5::Level::H_ALL); // Initialize all outputs to HIGH (relays OFF) // Configure the second PCA9555 chip (17-32 relays) ioex2.attach(Wire, 0x22); // Set I2C address to 0x22 ioex2.polarity(PCA95x5: ![]() ioex2.direction(PCA95x5: ![]() ioex2.write(PCA95x5::Level::H_ALL); // Initialize all outputs to HIGH (relays OFF) delay(50); // Wait for settings to take effect } void loop() { // Control the first PCA9555 chip (1-16 relays) for (size_t i = 0; i < 16; ++i) { Serial.print("set port low (chip 1): "); // Turning ON the relay Serial.println(i); ioex1.write((PCA95x5: ![]() ![]() Serial.println(ioex1.read(), BIN); // Print the current state of all relays (in binary) delay(50); // Small delay between each relay activation } // Control the second PCA9555 chip (17-32 relays) for (size_t i = 0; i < 16; ++i) { Serial.print("set port low (chip 2): "); // Turning ON the relay Serial.println(i + 16); // Display relay numbers 17-32 ioex2.write((PCA95x5: ![]() ![]() Serial.println(ioex2.read(), BIN); // Print the current state of all relays (in binary) delay(50); // Small delay between each relay activation } // Turn off the first PCA9555 chip (1-16 relays) for (size_t i = 0; i < 16; ++i) { Serial.print("set port high (chip 1): "); // Turning OFF the relay Serial.println(i); ioex1.write((PCA95x5: ![]() ![]() Serial.println(ioex1.read(), BIN); // Print the current state of all relays (in binary) delay(50); // Small delay between each relay deactivation } // Turn off the second PCA9555 chip (17-32 relays) for (size_t i = 0; i < 16; ++i) { Serial.print("set port high (chip 2): "); // Turning OFF the relay Serial.println(i + 16); // Display relay numbers 17-32 ioex2.write((PCA95x5: ![]() ![]() Serial.println(ioex2.read(), BIN); // Print the current state of all relays (in binary) delay(50); // Small delay between each relay deactivation } } ho provato a inserire questo codice e non funziona lo stesso RE: [arduino code examples for A32 Pro]-01 Turn ON/OFF relay - ktmustafa - 01-14-2025 Hi I used the same code but got this output and the device keeps doing this again and again rst:0x8 (TG1WDT_SYS_RESET),boot:0x17 (SPI_FAST_FLASH_BOOT) configsip: 0, SPIWP:0xee clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 mode ![]() load:0x3fff0030,len:4604 ho 0 tail 12 room 4 load:0x40078000,len:15488 load:0x40080400,len:4 load:0x40080404,len:3180 entry 0x400805b8 ets Jul 29 2019 12:21:46 RE: [arduino code examples for A32 Pro]-01 Turn ON/OFF relay - admin - 01-14-2025 you can try to download the BIN firmware file to ESP32 directly by ESP32 DOWNLOAD TOOL. |