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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,861
» Latest member: leadnadz
» Forum threads: 3,881
» Forum posts: 19,798

Full Statistics

Online Users
There are currently 54 online users.
» 0 Member(s) | 38 Guest(s)
AhrefsBot, Amazonbot, Applebot, Bing, Google, PetalBot, Sogou web, bot

Latest Threads
Interface T16M E/S et AIO
Forum: News
Last Post: admin
42 minutes ago
» Replies: 5
» Views: 78
KCS_Z1_V3.24.2.zip firmwa...
Forum: "KCS" v3 firmware
Last Post: admin
6 hours ago
» Replies: 6
» Views: 54
KC868-COLB - How to Conne...
Forum: KC868-HxB series Smart Controller
Last Post: upstream
9 hours ago
» Replies: 6
» Views: 35
New TA web interface unav...
Forum: TA
Last Post: admin
9 hours ago
» Replies: 1
» Views: 5
Instal ESP HA with ethern...
Forum: Getting Started with ESPHome and Home Assistant
Last Post: admin
9 hours ago
» Replies: 3
» Views: 20
KC868-A4 USB not detected...
Forum: KC868-A series and Uair Smart Controller
Last Post: stansvec
Yesterday, 02:04 AM
» Replies: 4
» Views: 1,618
N10 wire case diagram for...
Forum: N10
Last Post: admin
Yesterday, 12:22 AM
» Replies: 0
» Views: 10
"KCS" v2.2.20 firmware BI...
Forum: "KCS" v2 firmware system
Last Post: admin
Yesterday, 12:15 AM
» Replies: 0
» Views: 42
N20 wire case diagram for...
Forum: N20
Last Post: admin
04-02-2026, 11:34 PM
» Replies: 0
» Views: 10
Adding a debounce capabil...
Forum: KC868-A16v3
Last Post: admin
04-02-2026, 11:31 PM
» Replies: 4
» Views: 123

  KC868-A16
Posted by: Lifttech1 - 03-04-2023, 12:45 PM - Forum: "KCS" v2 firmware system - Replies (1)

Can KC868-A16 board be controlled with KBOX App and KBOX Pad

Print this item

  Home Automation 32CH Distribution Board DIY Video Tour
Posted by: admin - 03-04-2023, 03:30 AM - Forum: News - Replies (1)

Print this item

  https://youtu.be/3eTMfQgqIKU
Posted by: Shaps77 - 03-03-2023, 11:38 PM - Forum: DIY Project - Replies (4)

Just getting to know my KC868-A32...
Thank you KinCony for all the great YouTube videos to help   Smile

Print this item

  Smarthome App not querying the controller
Posted by: sundayop - 03-03-2023, 11:37 PM - Forum: News - Replies (1)

I am having an issue with my SmartHome App. It keeps hanging and it always has a problem querying the controllers - KC868-H8.

Print this item

  New house
Posted by: Yazaww - 03-03-2023, 11:34 AM - Forum: DIY Project - Replies (11)

Hello, i need your help on checking if i choosed the right components for a new house build, it contains 2 floors.

First floor: 50 lights
                3 ac conditioner(3 different rooms)
                7 blind motors
                6 pir sensor 
               

Second floor: 40 lights
                    2 ac conditioner
                    8 blind motors
                    4 pir sensor
                    3 Glass break sensor
                   
And also alexa speaker to control the whole house on voice control

I choosed:
4 h32b
4 switch terminal board
1 colb
2 blind motors switch( to control 2 blinds manually)
4 kc-102 (3 to control 3 ac in 3 different rooms and 1 for controlling 2 ac next to the each other)
4 alexa speakers with kc-atc to support alexa voice control

Im using tuya app and kincony smart home app

Now am i missing a piece that i need for this new house building?
Best regards,

Print this item

  RC-snubber
Posted by: Philadam - 03-03-2023, 03:15 AM - Forum: KC868-A16 - Replies (6)

Would I need to use the rc-snubber if outputting to 12v 3rd party relays?

Print this item

Bug (SOLVED) Strange behavor ESPHome
Posted by: S.Krans - 03-02-2023, 02:55 PM - Forum: KC868-A128 - Replies (2)

Hi i got a KC868-A128 with ESPHome on it code from this forum


My problem is if i enable Switch (switch.kincony_kc868_a128_a128_light65) the (switch.kincony_kc868_a128_a128_light49) goes on and if i switch (switch.kincony_kc868_a128_a128_light49) does the same switch on and off


if i enable all switches everything goes on except D132 on the board no light

i have attached the code and the log



Attached Files Thumbnail(s)
   

.txt   ESPHOME LOG.txt (Size: 46.57 KB / Downloads: 471)
.txt   ESPHOME CODE.txt (Size: 43.25 KB / Downloads: 427)
Print this item

  [Arduino source code for KC868-A2]-05 RS485
Posted by: KinCony Support - 03-02-2023, 06:54 AM - Forum: KC868-A2 - Replies (5)

Code:
//A2
#define A2_RS485RX  35
#define A2_RS485TX  32
void setup() {
  Serial.begin(115200);
  Serial2.begin(115200,SERIAL_8N1,A2_RS485RX,A2_RS485TX);

   Serial2.println("RS485 SEND is OK!!");
   Serial2.println("******************");
 
}

void loop() {
  /*print the received data of RS485 port*/
  while(Serial2.available()>0)
   {
    Serial2.print((char)Serial2.read());//Read rs485 receive data  and print it
   }
  delay(200);
}



Attached Files
.zip   KC868-A2.zip (Size: 3.15 KB / Downloads: 678)
Print this item

  [Arduino source code for KC868-A2]-04 RELAY
Posted by: KinCony Support - 03-02-2023, 06:54 AM - Forum: KC868-A2 - No Replies

Code:
/*KC868-A2  relay  output*/
#define RELAY1 2
#define RELAY2 15
void setup() {

  pinMode(RELAY1, OUTPUT);
  pinMode(RELAY2, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
    digitalWrite(RELAY1, HIGH);
    delay(1000);
    digitalWrite(RELAY1, LOW);
    delay(1000);
    digitalWrite(RELAY2, HIGH);
    delay(1000);
    digitalWrite(RELAY2, LOW);
    delay(1000);
  

}



Attached Files
.zip   A2_Relay.zip (Size: 99.6 KB / Downloads: 595)
Print this item

  [Arduino source code for KC868-A2]-03 LAN8720_UDP
Posted by: KinCony Support - 03-02-2023, 06:48 AM - Forum: KC868-A2 - Replies (1)

Code:
#include <ETH.h>
#include <WiFiUdp.h>

#define ETH_ADDR        0
#define ETH_POWER_PIN  -1
#define ETH_MDC_PIN    23
#define ETH_MDIO_PIN   18   
#define ETH_TYPE       ETH_PHY_LAN8720
#define ETH_CLK_MODE   ETH_CLOCK_GPIO17_OUT

WiFiUDP Udp;                      //Create UDP object
unsigned int localUdpPort = 4196; //local port

// Set it based on the IP address of the router
IPAddress local_ip(192, 168, 1, 200);
IPAddress gateway(192, 168, 1, 1);
IPAddress subnet(255, 255, 255, 0);
IPAddress dns(192, 168, 1, 1);

void setup()
{
  Serial.begin(115200);
  Serial.println();
   
  ETH.begin(ETH_ADDR, ETH_POWER_PIN, ETH_MDC_PIN, ETH_MDIO_PIN, ETH_TYPE, ETH_CLK_MODE); //start with ETH

  // write confir for static IP, gateway,subnet,dns1,dns2
  if (ETH.config(local_ip, gateway, subnet, dns, dns) == false) {
    Serial.println("LAN8720 Configuration failed.");
  }else{Serial.println("LAN8720 Configuration success.");}
 
/* while(!((uint32_t)ETH.localIP())) //wait for IP
  {

  }*/
  Serial.println("Connected");
  Serial.print("IP Address:");
  Serial.println(ETH.localIP());

  Udp.begin(localUdpPort); //begin UDP listener
}

void loop()
{
  int packetSize = Udp.parsePacket(); //get package size
  if (packetSize)                     //if have received data
  {
    char buf[packetSize];
    Udp.read(buf, packetSize); //read current data

    Serial.println();
    Serial.print("Received: ");
    Serial.println(buf);
    Serial.print("From IP: ");
    Serial.println(Udp.remoteIP());
    Serial.print("From Port: ");
    Serial.println(Udp.remotePort());

    Udp.beginPacket(Udp.remoteIP(), Udp.remotePort()); //ready to send data
    Udp.print("Received: ");   
    Udp.write((const uint8_t*)buf, packetSize); //copy data to sender buffer
    Udp.endPacket();            //send data
  }
}



Attached Files
.zip   KC868-A2.zip (Size: 3.15 KB / Downloads: 615)
Print this item