Hello, I have an issue, maybe you guys can help me. I have bought a BTS7960 IBT_2 to control a motor (12v Linear actuator). But I have problems with the KC868-A6, not booting up correctly (Does not enable wifi, does not get online on HomeESP in Home Assistant) if I have added the BTS7960 IBT_2 from VCC to 3.3V port. I believe it might be because the BTS7960 IBT_2 need 5V and this puts to much load on the KC868-A6 to boot up correctly? Do you know if this issue, and do you know if my suspicion is correct. (If I connect the VCC to 3.3V after it has booted up and is active on wifi, it works fine with the motor)
From what I understand about the BTS7960 IBT_2, is that it should also with with 3.3V
I have a KC868 A8, after watching your video on Youtube I downloaded firmware KCS_KC868_A8_V1.9.1 and KCS_KC868_A8_V2.2.20. I am able to flash both versions but it doesn't show all option on its webpage or incomplete options. fx. I don't see the option to bind input and output port together.
Could you please send me the ulr link to download the compatible firmware version.
I am trying to test my SD CARD on the a16v3 . I used your code in the arduino source code - "How to use SD CARD".
The code writes the hello.txt file to SD but deletes it afterwards. I would like to confirm that the file was written by inserting the SD CARD into my computer and see the file.
So I commented out the delete function but I do not see the file on my SD CARD .. any Idea what I might be doing wrong?
This is my serial monitor message I get without the delete function:
SD Card Type: SDHC
SD Card Size: 29820MB
Writing file: /hello.txt
File written
Appending to file: /hello.txt
Message appended
Reading file: /hello.txt
Read from file: Hello World!
1048576 bytes read for 653 ms
1048576 bytes written for 740 ms
Total space: 29805MB
Used space: 6MB
I use a 32GB SD CARD and did format it to FAT32 with Allocation Unit Size - 32 kb.
I also included the updated code below where I removed the delete function if that helps.
I appreciate any help as I am lost.
Code:
*
* Made by KinCony IoT: https://www.kincony.com
*
* SD Card File Operations
*
* This program demonstrates basic file operations on an SD card using the ESP32.
* It includes functionality to:
* - Initialize and test the SD card
* - Read from, write to, append to, and delete files on the SD card
* - Measure file read and write performance
*
* Hardware Connections:
* - SCK: GPIO 13
* - MISO: GPIO 14
* - MOSI: GPIO 12
* - CS: GPIO 11
*/
/**
* @brief Reads the contents of a file from the SD card and prints it to the serial monitor.
*
* @param fs File system to use (in this case, SD).
* @param path Path of the file to read.
*/
void readFile(fs::FS &fs, const char * path) {
Serial.printf("Reading file: %s\n", path);
File file = fs.open(path);
if (!file) {
Serial.println("Failed to open file for reading");
return;
}
Serial.print("Read from file: ");
while (file.available()) {
Serial.print((char)file.read());
}
file.close();
}
/**
* @brief Writes a message to a file on the SD card.
*
* @param fs File system to use (in this case, SD).
* @param path Path of the file to write.
* @param message Message to write to the file.
*/
void writeFile(fs::FS &fs, const char * path, const char * message) {
Serial.printf("Writing file: %s\n", path);
File file = fs.open(path, FILE_WRITE);
if (!file) {
Serial.println("Failed to open file for writing");
return;
}
if (file.print(message)) {
Serial.println("File written");
} else {
Serial.println("Write failed");
}
file.close();
}
/**
* @brief Appends a message to a file on the SD card.
*
* @param fs File system to use (in this case, SD).
* @param path Path of the file to append.
* @param message Message to append to the file.
*/
void appendFile(fs::FS &fs, const char * path, const char * message) {
Serial.printf("Appending to file: %s\n", path);
File file = fs.open(path, FILE_APPEND);
if (!file) {
Serial.println("Failed to open file for appending");
return;
}
if (file.print(message)) {
Serial.println("Message appended");
} else {
Serial.println("Append failed");
}
file.close();
}
/**
* @brief Deletes a file from the SD card.
*
* @param fs File system to use (in this case, SD).
* @param path Path of the file to delete.
*/
//void deleteFile(fs::FS &fs, const char * path) {
// Serial.printf("Deleting file: %s\n", path);
// if (fs.remove(path)) {
// Serial.println("File deleted");
// } else {
// Serial.println("Delete failed");
// }
//}
/**
* @brief Tests file read and write performance.
*
* @param fs File system to use (in this case, SD).
* @param path Path of the file to test.
*/
void testFileIO(fs::FS &fs, const char * path) {
File file = fs.open(path);
static uint8_t buf[512];
size_t len = 0;
uint32_t start = millis();
uint32_t end = start;
if (file) {
len = file.size();
size_t flen = len;
start = millis();
while (len) {
size_t toRead = len;
if (toRead > 512) {
toRead = 512;
}
file.read(buf, toRead);
len -= toRead;
}
end = millis() - start;
Serial.printf("%u bytes read for %u ms\n", flen, end);
file.close();
} else {
Serial.println("Failed to open file for reading");
}
file = fs.open(path, FILE_WRITE);
if (!file) {
Serial.println("Failed to open file for writing");
return;
}
size_t i;
start = millis();
for (i = 0; i < 2048; i++) {
file.write(buf, 512);
}
end = millis() - start;
Serial.printf("%u bytes written for %u ms\n", 2048 * 512, end);
file.close();
}
void setup() {
// Initialize serial communication
Serial.begin(115200);
I just acquired an AC868-A6 V1.4 board from Aliexpress.
I downloaded the lastest KCS_KC868_A6_V2.2.20.bin firmware in it
I want to give a try to Arduino IDE.
I found some ''demo programs'' on the site, such as the one below: (by the way the comment ''Blink Led on PIN0 isn't appropriate !!!)
Selected ESP32Dev Module board type
I can compile and download the program.
After downloading the program, the ESP32 will keep reseting indefintely ...
getting this message in the serial monitor:
Hi,
I just ordered N30, which I plan to power from a DIN rail power supply.
But i cannot find how much power does the board actually need - only 12-24V.
Hello,
I recently received my G1 but it seems to have some problem on powerup. When I plug in 12VDC the red LED on the board lights, the main Green LED lights, and the work Kincony appears on the small screen.
But it doesn't broadcast any wifi signal and I notice the green ethernet port link LED is on, when there is no cable connected. I have all three aerials installed ok.
When I connect ethernet cable the green LED turns off and the orange LED starts flashing.
It looks like it did connect to my router with the name WIZnetEFFEED but there is no response when I try to go to the IP address of WIZnetEFFEED.
Is there some kind of overall board reset or can I use the onboard buttons or USB port for diagnostics.
Professional Introduction Maxsys is an experienced System Integrator, ELV Consultant, Smart Home Specialist, and IT Infrastructure Professional specializing in the design, implementation, and management of integrated technology solutions for residential, commercial, and industrial projects throughout the Kingdom of Saudi Arabia.
As a freelance technology consultant, I provide complete turnkey solutions for newly constructed villas, luxury homes, residential compounds, offices, and commercial buildings. My expertise covers the planning, design, installation, integration, testing, and commissioning of IT, ELV, Smart Home, security, networking, and electrical systems, delivering reliable, scalable, and future-ready solutions tailored to each client's requirements.
Core Areas of Expertise
Smart Home Automation
One of my specialized services is the design and implementation of Smart Home Automation Systems using KinCony intelligent controllers and automation hardware. KinCony offers open-platform, ESP32-based controllers that integrate with platforms such as Home Assistant, ESPHome, MQTT, Node-RED, and other IoT technologies, making them suitable for flexible and locally controlled smart home installations.
My smart home solutions include:
Intelligent Lighting Control
Smart Switch & Relay Automation
Curtain & Blind Automation
HVAC & Air Conditioning Control
Smart Door Locks & Video Doorbells
Smart Irrigation Systems
Water Tank & Pump Automation
Energy Monitoring & Power Management
Motion, Smoke, Gas & Water Leak Detection
Security Alarm Integration
Voice Control with Google Assistant & Amazon Alexa
Mobile App Remote Control
Automation Scenes & Scheduling
Local Automation without Cloud Dependency
Integration with CCTV, Access Control, Intercom, and Security Systems
Every smart home project is designed with future expansion in mind, allowing homeowners to add new devices and automation features as their needs evolve while maintaining a reliable and secure infrastructure.
My mission is to help homeowners, contractors, consultants, and businesses build intelligent, secure, energy-efficient, and future-proof properties by combining modern technology with practical engineering expertise. From concept and design to installation, testing, commissioning, and after-sales support, I am committed to delivering professional solutions that meet international standards and exceed client expectations.
One of the key reasons I confidently recommend and implement **KinCony** Smart Home products in my projects is the outstanding support provided by their technical team. Throughout my experience working with their controllers and automation solutions, I have found their engineers to be highly knowledgeable, professional, and committed to helping system integrators achieve successful project outcomes.
Whenever I encounter technical challenges, require assistance with product configuration, or need guidance on advanced automation scenarios, the KinCony technical support team responds promptly with clear, practical, and effective solutions. Their willingness to assist, combined with their deep understanding of both hardware and software integration, has enabled me to complete projects efficiently while maintaining high standards of quality and reliability.
Whether it involves integrating devices with Home Assistant, ESPHome, MQTT, Node-RED, or customizing automation logic for unique client requirements, the KinCony team consistently provides valuable technical guidance and timely support. Their responsiveness significantly reduces troubleshooting time and gives me confidence in delivering dependable smart home solutions to my clients.
As a system integrator, having access to a responsive and knowledgeable manufacturer is invaluable. The excellent cooperation and continuous technical support from the KinCony team have played an important role in the successful deployment of my smart home projects, allowing me to provide reliable, scalable, and future-ready automation systems for homeowners across Saudi Arabia.
(06-26-2026, 06:31 AM)Maxsys249 Wrote: Professional Introduction Maxsys is an experienced System Integrator, ELV Consultant, Smart Home Specialist, and IT Infrastructure Professional specializing in the design, implementation, and management of integrated technology solutions for residential, commercial, and industrial projects throughout the Kingdom of Saudi Arabia.
As a freelance technology consultant, I provide complete turnkey solutions for newly constructed villas, luxury homes, residential compounds, offices, and commercial buildings. My expertise covers the planning, design, installation, integration, testing, and commissioning of IT, ELV, Smart Home, security, networking, and electrical systems, delivering reliable, scalable, and future-ready solutions tailored to each client's requirements.
Core Areas of Expertise
Smart Home Automation
One of my specialized services is the design and implementation of Smart Home Automation Systems using KinCony intelligent controllers and automation hardware. KinCony offers open-platform, ESP32-based controllers that integrate with platforms such as Home Assistant, ESPHome, MQTT, Node-RED, and other IoT technologies, making them suitable for flexible and locally controlled smart home installations.
My smart home solutions include:
Intelligent Lighting Control
Smart Switch & Relay Automation
Curtain & Blind Automation
HVAC & Air Conditioning Control
Smart Door Locks & Video Doorbells
Smart Irrigation Systems
Water Tank & Pump Automation
Energy Monitoring & Power Management
Motion, Smoke, Gas & Water Leak Detection
Security Alarm Integration
Voice Control with Google Assistant & Amazon Alexa
Mobile App Remote Control
Automation Scenes & Scheduling
Local Automation without Cloud Dependency
Integration with CCTV, Access Control, Intercom, and Security Systems
Every smart home project is designed with future expansion in mind, allowing homeowners to add new devices and automation features as their needs evolve while maintaining a reliable and secure infrastructure.
My mission is to help homeowners, contractors, consultants, and businesses build intelligent, secure, energy-efficient, and future-proof properties by combining modern technology with practical engineering expertise. From concept and design to installation, testing, commissioning, and after-sales support, I am committed to delivering professional solutions that meet international standards and exceed client expectations.
One of the key reasons I confidently recommend and implement **KinCony** Smart Home products in my projects is the outstanding support provided by their technical team. Throughout my experience working with their controllers and automation solutions, I have found their engineers to be highly knowledgeable, professional, and committed to helping system integrators achieve successful project outcomes.
Whenever I encounter technical challenges, require assistance with product configuration, or need guidance on advanced automation scenarios, the KinCony technical support team responds promptly with clear, practical, and effective solutions. Their willingness to assist, combined with their deep understanding of both hardware and software integration, has enabled me to complete projects efficiently while maintaining high standards of quality and reliability.
Whether it involves integrating devices with Home Assistant, ESPHome, MQTT, Node-RED, or customizing automation logic for unique client requirements, the KinCony team consistently provides valuable technical guidance and timely support. Their responsiveness significantly reduces troubleshooting time and gives me confidence in delivering dependable smart home solutions to my clients.
As a system integrator, having access to a responsive and knowledgeable manufacturer is invaluable. The excellent cooperation and continuous technical support from the KinCony team have played an important role in the successful deployment of my smart home projects, allowing me to provide reliable, scalable, and future-ready automation systems for homeowners across Saudi Arabia.
I started This Project Electrical Work in 2025 October ....
Posted by: admin - 06-25-2026, 10:40 AM - Forum: News
- No Replies
KinCony Pi5M32 – Raspberry Pi CM5 DIN Rail 32-Channel MOSFET Controller for Smart Home & Industrial Automation
Product Overview KinCony Pi5M32 is a powerful Raspberry Pi-based IoT gateway and automation controller designed for smart home, industrial automation, and IoT edge computing applications. Powered by the Raspberry Pi Compute Module 5 (CM5), it integrates 32 MOSFET outputs, 32 optocoupler-isolated digital inputs, analog inputs, PWM outputs, RS232/RS485 communication interfaces, and expansion capabilities into a rugged DIN rail aluminum enclosure.
The Raspberry Pi CM5 directly controls all MOSFET outputs, digital inputs, analog inputs, PWM outputs, and communication interfaces. Users can easily deploy automation projects using Home Assistant, Node-RED, MQTT, Modbus, Docker, Python, and other Linux-based software platforms.
Pi5M32 is ideal for high-density DC load control applications such as LED lighting systems, solenoid valves, DC motors, industrial actuators, and custom automation equipment.
Key Features
Powered by Raspberry Pi Compute Module 5 (CM5)
32-channel MOSFET outputs
32-channel optocoupler-isolated digital inputs
Supports Home Assistant and Node-RED
RS232 and RS485 communication ports
2-channel PWM outputs
2 × DC 0-5V analog inputs
2 × 4-20mA analog inputs
20 free GPIO expansion pins
Gigabit Ethernet support
M.2 M-Key PCIe expansion socket
SSD1306 I2C OLED display
Industrial DIN rail aluminum enclosure
Designed for smart home and industrial automation systems