Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,530
» Latest member: brochips
» Forum threads: 4,182
» Forum posts: 20,781

Full Statistics

Online Users
There are currently 25 online users.
» 0 Member(s) | 15 Guest(s)
Amazonbot, Baidu, Crawl, PetalBot, Scrapy, bot

Latest Threads
KC868-A16
Forum: "KCS" v2 firmware system
Last Post: 5310h
11 hours ago
» Replies: 9
» Views: 3,001
KC868-A16 UART pins
Forum: KC868-A series and Uair Smart Controller
Last Post: meowdokugame
08-04-2026, 07:40 AM
» Replies: 2
» Views: 577
KC868-A32 Malfunction Aft...
Forum: KC868-A32/A32 Pro
Last Post: admin
08-04-2026, 06:19 AM
» Replies: 3
» Views: 75
KinCony F8 + ESPHome: Una...
Forum: F8
Last Post: admin
08-02-2026, 11:00 PM
» Replies: 2
» Views: 36
F8 ESPHome yaml for home ...
Forum: F8
Last Post: admin
08-02-2026, 11:00 PM
» Replies: 0
» Views: 17
Schema A16V3 for Research...
Forum: KC868-A16v3
Last Post: hamzachaouri
08-02-2026, 10:34 PM
» Replies: 2
» Views: 59
B8 ADS1115 current inputs
Forum: B8
Last Post: admin
07-29-2026, 09:47 PM
» Replies: 6
» Views: 109
KINCONY IN KSA
Forum: DIY Project
Last Post: admin
07-29-2026, 10:43 AM
» Replies: 14
» Views: 1,839
A32 Pro ESPHome yaml for ...
Forum: KC868-A32/A32 Pro
Last Post: admin
07-27-2026, 06:25 AM
» Replies: 1
» Views: 1,214
E8v3 E16v3 E24v3 relay mo...
Forum: Extender module
Last Post: admin
07-27-2026, 01:00 AM
» Replies: 0
» Views: 66

  KinCony Relay Driver User Guide
Posted by: admin - 07-07-2026, 07:02 AM - Forum: KinCony integrate with Control4 home automation - No Replies

KinCony Relay Driver User Guide

.pdf   KinCony Relay Driver User Guide.pdf (Size: 115.6 KB / Downloads: 85)

Print this item

  ESP system with BTS7960 IBT_2
Posted by: SchmidtGundersen - 07-04-2026, 05:04 PM - Forum: DIY Project - Replies (4)

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

To clearfy I am using KC868-A6-V1.4SP

Thanks!

Print this item

  Firmware for KCS 868 A8 v 1.7 board
Posted by: zali - 07-03-2026, 03:10 PM - Forum: KC868-A series and Uair Smart Controller - Replies (3)

Hi support,

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.

Best regards

Zulfqar

Print this item

  difficulty writing to SD CARD
Posted by: martinlotz - 07-01-2026, 09:07 PM - Forum: KC868-A16v3 - Replies (2)

Good Day, 

I do not know what I am doing wrong: 

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
*/

#include "FS.h"
#include "SD.h"
#include "SPI.h"

// Pin definitions for SD card
#define SCK  13
#define MISO 14
#define MOSI 12
#define CS   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);

  // Initialize SPI and SD card
  SPIClass spi = SPIClass(HSPI);
  spi.begin(SCK, MISO, MOSI, CS);

  if (!SD.begin(CS, spi, 80000000)) {
    Serial.println("Card Mount Failed");
    return;
  }

  uint8_t cardType = SD.cardType();

  if (cardType == CARD_NONE) {
    Serial.println("No SD card attached");
    return;
  }

  Serial.print("SD Card Type: ");
  if (cardType == CARD_MMC) {
    Serial.println("MMC");
  } else if (cardType == CARD_SD) {
    Serial.println("SDSC");
  } else if (cardType == CARD_SDHC) {
    Serial.println("SDHC");
  } else {
    Serial.println("UNKNOWN");
  }

  uint64_t cardSize = SD.cardSize() / (1024 * 1024);
  Serial.printf("SD Card Size: %lluMB\n", cardSize);
  delay(2000);

  // Perform file operations
  //deleteFile(SD, "/hello.txt");
  writeFile(SD, "/hello.txt", "Hello ");
  appendFile(SD, "/hello.txt", "World!\n");
  readFile(SD, "/hello.txt");
  testFileIO(SD, "/test.txt");
  Serial.printf("Total space: %lluMB\n", SD.totalBytes() / (1024 * 1024));
  Serial.printf("Used space: %lluMB\n", SD.usedBytes() / (1024 * 1024));
}

void loop() {
  // No operation in loop
}

Print this item

  Can't make AC868-A6 V1.4Sp work with Arduino IDE
Posted by: JL_M_88 - 07-01-2026, 07:55 PM - Forum: N30 - Replies (3)

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:

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
modeBig GrinIO, clock div:1
load:0x3fff0030,len:4876
ho 0 tail 12 room 4
load:0x40078000,len:16560
load:0x40080400,len:3500
entry 0x400805b4
ets Jul 29 2019 12:21:46

Any idea about what can be wrong there ?

Thanks

JL


/*
 Blink led on PIN0
 by Mischianti Renzo <http://www.mischianti.org>
 https://www.mischianti.org/2019/01/02/pc...asy-usage/
*/
#include "Arduino.h"
#include "PCF8574.h"
// Set i2c address
PCF8574 pcf8574(0x24);
void setup()
{
  Wire.begin(12, 11); // SDA: GPIO12, SCL: GPIO11
  Serial.begin(115200);
//  delay(1000);
  // Set pinMode to OUTPUT
  pcf8574.pinMode(P0, OUTPUT);
  pcf8574.pinMode(P1, OUTPUT);
  pcf8574.pinMode(P2, OUTPUT);
  pcf8574.pinMode(P3, OUTPUT);
  pcf8574.pinMode(P4, OUTPUT);
  pcf8574.pinMode(P5, OUTPUT);
  pcf8574.digitalWrite(P0, HIGH);
  pcf8574.digitalWrite(P1, HIGH);
  pcf8574.digitalWrite(P2, HIGH);
  pcf8574.digitalWrite(P3, HIGH);
  pcf8574.digitalWrite(P4, HIGH);
  pcf8574.digitalWrite(P5, HIGH);
  Serial.print("Init pcf8574...");
  if (pcf8574.begin()){
    Serial.println("OK");
  }else{
    Serial.println("KO");
  }
}
void loop()
{
  delay(300);
  pcf8574.digitalWrite(P0, LOW);
  delay(300);
  pcf8574.digitalWrite(P1, LOW);
  delay(300);
  pcf8574.digitalWrite(P2, LOW);
  delay(300);
  pcf8574.digitalWrite(P3, LOW);
  delay(300);
  pcf8574.digitalWrite(P4, LOW);
  delay(300);
  pcf8574.digitalWrite(P5, HIGH);
  delay(300);
  pcf8574.digitalWrite(P4, HIGH);
  delay(300);
  pcf8574.digitalWrite(P5, LOW)
}

Print this item

  N30 power supply
Posted by: Stanb - 06-27-2026, 04:33 PM - Forum: N30 - Replies (3)

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.

Anyone can help?

BR,
Stan

Print this item

  G1 powerup issue
Posted by: beegeenz - 06-27-2026, 04:11 AM - Forum: G1 - Replies (1)

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.

Regards
beegeenz

Print this item

Photo A Project in Saudi Arabia by Me
Posted by: Maxsys249 - 06-26-2026, 06:31 AM - Forum: Apply for free sample product - Replies (2)

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 Systems
  • CCTV Surveillance Systems
  • Structured Cabling (Copper & Fiber Optic)
  • Enterprise Networking (Cisco, MikroTik, Ubiquiti, Huawei & TP-Link)
  • Wi-Fi Design & Coverage Optimization
  • Access Control & Biometric Systems
  • Video Intercom Systems
  • Public Address (PA) Systems
  • Audio Visual (AV) Solutions
  • IPTV & SMATV Systems
  • Network Cabinets & Data Center Infrastructure
  • Server & Storage Solutions
  • Time Attendance Systems
  • ELV System Design & Integration
  • AutoCAD Drawings, BOQs & Technical Documentation
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 Systems
  • CCTV Surveillance Systems
  • Structured Cabling (Copper & Fiber Optic)
  • Enterprise Networking (Cisco, MikroTik, Ubiquiti, Huawei & TP-Link)
  • Wi-Fi Design & Coverage Optimization
  • Access Control & Biometric Systems
  • Video Intercom Systems
  • Public Address (PA) Systems
  • Audio Visual (AV) Solutions
  • IPTV & SMATV Systems
  • Network Cabinets & Data Center Infrastructure
  • Server & Storage Solutions
  • Time Attendance Systems
  • ELV System Design & Integration
  • AutoCAD Drawings, BOQs & Technical Documentation
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 ....



Attached Files Thumbnail(s)
                       
                   
   
Image(s)
       
Print this item

  Force sensitive sensor with kc868-A
Posted by: Elgatoguiri - 06-26-2026, 06:16 AM - Forum: KC868-A series and Uair Smart Controller - Replies (6)

Hi!

I have a Force sensitive resistor: https://www.aliexpress.com/p/order/index...76dbGk3szT

I'd like to know if it's possible to directly connect it to the board and use it as switch in esphome. 

Thanks!

Print this item

  KinCony Pi5M32 – Raspberry Pi CM5 IoT Gateway released
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
[Image: Pi5M32-1.jpg]
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.


[Image: Pi5M32-5.jpg]
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

[Image: Pi5M32-7.jpg]

Print this item