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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,882
» Latest member: mb88cacom
» Forum threads: 4,229
» Forum posts: 20,974

Full Statistics

Online Users
There are currently 248 online users.
» 0 Member(s) | 231 Guest(s)
Amazonbot, Applebot, Baidu, Bing, Bytespider, Crawl, Google, HeadlessChrome, PetalBot, bot

Latest Threads
N10 - ESPHome - ARM CPU s...
Forum: N10
Last Post: admin
7 minutes ago
» Replies: 3
» Views: 20
extend KC868-A16v3
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
8 minutes ago
» Replies: 1
» Views: 1
"KCS" v2.2.21 firmware BI...
Forum: "KCS" v2 firmware system
Last Post: admin
11 hours ago
» Replies: 5
» Views: 52
KC868-A16 Outputs Y01-Y16...
Forum: KC868-A16
Last Post: admin
Yesterday, 11:15 PM
» Replies: 1
» Views: 11
wish
Forum: KC868-A16v3
Last Post: admin
Yesterday, 01:14 PM
» Replies: 5
» Views: 54
⚡ 40 Buttons, 36 Lighting...
Forum: DIY Project
Last Post: viko
Yesterday, 11:39 AM
» Replies: 22
» Views: 430
B32M maximum voltage
Forum: DIY Project
Last Post: velifetime
09-08-2026, 07:01 AM
» Replies: 2
» Views: 329
KNX ETS software project ...
Forum: CO16
Last Post: admin
09-08-2026, 03:44 AM
» Replies: 0
» Views: 29
"KCS" v3.27.1 firmware BI...
Forum: "KCS" v3 firmware
Last Post: admin
09-08-2026, 03:24 AM
» Replies: 0
» Views: 93
OLED not found in I2C sca...
Forum: KC868-A6v3
Last Post: admin
09-07-2026, 02:55 AM
» Replies: 1
» Views: 42

  SIM7100_SIM7500_SIM7600 Series Windows USB driver
Posted by: admin - 07-14-2022, 04:54 AM - Forum: KC868-A8S - No Replies

SIM7100_SIM7500_SIM7600 Series Windows USB driver_V1.00
https://www.kincony.com/download/SIM7100..._V1.00.rar

Print this item

  KC868-H4B Control DC 12V contactor
Posted by: KinCony Support - 07-12-2022, 06:19 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

   
   

Print this item

Photo H32BS and COLB MINI Smart distribution box
Posted by: KinCony Support - 07-11-2022, 02:00 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - Replies (4)

   
   

Print this item

  KC868-H32BS control DC24V contactor
Posted by: KinCony Support - 07-08-2022, 02:50 AM - Forum: Schematic & diagram & Dimensions of KinCony PCB layout CAD file - No Replies

   

Print this item

  KC868-H32BS Switch press delayed update
Posted by: v1rtus - 07-07-2022, 07:12 PM - Forum: Development - Replies (9)

I have a KC868-H32BS controller that has many impulse switches connected to it.

When any switch is pressed the controller updates server with NODE-RED via mqtt about that. But there is a delay I think ~1 second between switch click and update received by NODE-RED.
Everything work via LAN.

Is it possible to do something with that?

Print this item

  New DIY Project Support
Posted by: ahmedk4444@yahoo.com - 07-07-2022, 01:55 AM - Forum: DIY Project - Replies (74)

Dear kincony support,
I bought those from Kincony 

1 server
1 A16 bundle E
2 D8 + 16 SSR 10A + 16 CB 6A
1 H32BS+ 2 E8 + 16 CB 10 A
1 power supply 220/12 volt 4.5A


I need to know the exact wiring diagram need it between Server ,A16 Bundle E , 2D8, H32BS to start build the distribution board.

Note the lesson 3 demo just showing server with A16 and connect the server directly to load through E16 only 

Thanks

Print this item

  Configure KC868-A8 in ESPHome
Posted by: fabuena - 07-06-2022, 07:41 AM - Forum: KC868-A8 - Replies (21)

Hello, 

¿How can I configured/flash my KC868-A8 in ESPHome (Home Assistant) for this sensors?

*Two Digital Inputs S3 and 54,
*Two Analog Inputs A1 and A2
*Two Temperature sensors Input S1and S2 can connect
DS18B20 Temperature sensor or DHT11 or DHT21 temperature and Humdity Sensor.


Does anyone have a complete KC868-A8 .yaml file to configure ESPHome?
Thankyou in advance

Print this item

  [Arduino IDE demo source code for KC868-AI]--#06-KC868-AI_RS485_code
Posted by: KinCony Support - 07-06-2022, 01:07 AM - Forum: KC868-AI - Replies (5)

[Arduino IDE demo source code for KC868-AI]--#06-KC868-AI_RS485_code

Code:
void setup() {
  // put your setup code here, to run once:
Serial2.begin(9600);
}

void loop() {
  // put your main code here, to run repeatedly:
Serial2.println("KinCony");
delay(500);
}



Attached Files
.zip   RS485.zip (Size: 420 bytes / Downloads: 906)
Print this item

  [Arduino IDE demo source code for KC868-AI]--#05-KC868-AI_RS232_code
Posted by: KinCony Support - 07-06-2022, 01:07 AM - Forum: KC868-AI - No Replies

[Arduino IDE demo source code for KC868-AI]--#05-KC868-AI_RS232_code

Code:
void setup() {
  // put your setup code here, to run once:
Serial1.begin(115200,SERIAL_8N1,33,32);
}

void loop() {
  // put your main code here, to run repeatedly:
Serial1.print("RELAY-KEY-255,1,1");
delay(2000);


}



Attached Files
.zip   RS232.zip (Size: 455 bytes / Downloads: 873)
Print this item

  [Arduino IDE demo source code for KC868-AI]--#04-KC868-AI_RF receive_code
Posted by: KinCony Support - 07-06-2022, 01:06 AM - Forum: KC868-AI - No Replies

[Arduino IDE demo source code for KC868-AI]--#04-KC868-AI_RF receive_code

Code:
#include <RCSwitch.h>

RCSwitch mySwitch = RCSwitch();

void setup()
{
  mySwitch.enableReceive(digitalPinToInterrupt(13));

  Serial.begin(115200);
  Serial.println();
}

 
void loop()
{
//-------------------------------------
  if (mySwitch.available()) {
   
    Serial.print("Received ");
    Serial.print( mySwitch.getReceivedValue() );
    Serial.print(" / ");
    Serial.print( mySwitch.getReceivedBitlength() );
    Serial.print("bit ");
    Serial.print("Protocol: ");
    Serial.println( mySwitch.getReceivedProtocol() );

    mySwitch.resetAvailable();
  }
  delay(30);
 
}



Attached Files
.zip   RF.zip (Size: 533 bytes / Downloads: 847)
Print this item