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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,207
» Latest member: fruitvalues
» Forum threads: 4,093
» Forum posts: 20,529

Full Statistics

Online Users
There are currently 15 online users.
» 0 Member(s) | 4 Guest(s)
Baidu, PetalBot, Semrush, bot

Latest Threads
KCS v2 relay state after ...
Forum: "KCS" v2 firmware system
Last Post: admin
1 hour ago
» Replies: 1
» Views: 2
Multiple phase L1,L2,L3
Forum: N20
Last Post: admin
3 hours ago
» Replies: 7
» Views: 358
Request for 230VAC LEDs /...
Forum: Development
Last Post: admin
7 hours ago
» Replies: 5
» Views: 38
KC868-a6 2 analog output...
Forum: KC868-A6
Last Post: admin
Yesterday, 01:21 PM
» Replies: 7
» Views: 114
Single-family home automa...
Forum: DIY Project
Last Post: Jan_W
06-16-2026, 06:07 AM
» Replies: 3
» Views: 148
Kincony A4s
Forum: KC868-A4S
Last Post: admin
06-15-2026, 11:27 PM
» Replies: 1
» Views: 59
"KCS" v3.25.0 firmware BI...
Forum: "KCS" v3 firmware
Last Post: admin
06-15-2026, 11:26 PM
» Replies: 9
» Views: 837
The watch shows the wrong...
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
06-15-2026, 11:25 PM
» Replies: 1
» Views: 69
KC868-A16v3 integration w...
Forum: KC868-A series and Uair Smart Controller
Last Post: rosnoteh
06-15-2026, 08:26 PM
» Replies: 2
» Views: 176
[Arduino IDE demo source ...
Forum: KC868-A8S
Last Post: admin
06-15-2026, 06:16 AM
» Replies: 0
» Views: 74

  KC868-A64 ESP32 I/O pin define
Posted by: admin - 05-12-2022, 01:03 AM - Forum: KC868-A64 - No Replies

#define ANALOG_A1  GPIO39
#define ANALOG_A2  GPIO34
#define ANALOG_A3  GPIO36
#define ANALOG_A4  GPIO35

IIC Bus-1:A

SDA-A:GPIO5
SCL-A:GPIO16

PCF8575:U143 (relay1-16): 100 100 = 0x24
PCF8575:U145 (relay17-32): 100 101 = 0x25
PCF8575:U147 (relay33-48): 100 001 = 0x21
PCF8575:U149 (relay49-64): 100 010 = 0x22

IIC Bus-2:B
SDA-B:GPIO15
SCL-B:GPIO4

PCF8575:U14 (DI1-16): 100 100 = 0x24
PCF8575:U31 (DI17-32): 100 101 = 0x25
PCF8575:U56 (DI33-48): 100 001 = 0x21
PCF8575:U57 (DI49-64): 100 010 = 0x22


-----------------

Ethernet (LAN8720) I/O define:

#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

--------------------

RS485:
RXD:GPIO13
TXD:GPIO14

Extend serial port (3.3v TTL level):
RXD:GPIO32
TXD:GPIO33

Print this item

  KC868-UAIR ESPHOME Config for IR and RF
Posted by: dmshimself - 05-10-2022, 09:25 PM - Forum: KC868-Uair - Replies (34)

I've recently received a bare board for a KC868-UAIR as the original shipped with the tower case didn't work.  I've got the new board working with ESPHOME and Home Assistant using the config I was given and that works fine.  But the config didn't cover the buzzer, the IR receiver/transmitter and RF receiver/transmitter.  These are advertised features, so I want to make sure the new board works.  I got the buzzer working ok, but I'm struggling with the IR and RF.

I've been asked by the supplier to make a post here, so here it is :-)

What I've done so far is to try to read IR codes using the guide is ESPHOME located here:
https://esphome.io/components/remote_tra...p-infrared

Using the tech info on the KC868-UAIR I've added the following to my ESPHOME confg given the data located here:
https://www.kincony.com/forum/showthread.php?tid=1438

remote_receiver:
  pin: GPIO19
  dump: all


With that, the ESPHOME log says that the pin is high initially and that I should invert it.  Anyway, I placed the TV remote close the front of the board where the IR receiver is next to the USB ports and no data was received.  The TV did receive them as I have the TV directly behind the board and the TV worked (volume up/down)

So I inverted the pin with

remote_receiver:
  pin:
    number: GPIO19
    inverted: true
  dump: all


and while ESPHOME no longer suggested I needed to invert the pin, I still do not get any data being dumped out to the console.  I can see other messages like the temperature changes just fine.

Has anyone got a config that works for these extra devices as access to these was an important reason for my purchase?

Print this item

  [Arduino IDE demo source code for KC868-SERVER]--#05-WS2812B LED_code
Posted by: KinCony Support - 05-06-2022, 03:28 AM - Forum: KC868-Server Raspberry Pi4 local server - No Replies

[Arduino IDE demo source code for KC868-SERVER]--#05-WS2812B LED_code

Code:
#include <Adafruit_NeoPixel.h>

Adafruit_NeoPixel rgb_display_4 = Adafruit_NeoPixel(5,4,NEO_GRB + NEO_KHZ800);
// LED numbers is 5    led connect to IO4

void setup(){
  rgb_display_4.begin();
}

void loop(){
  rgb_display_4.setPixelColor((1)-1, (0xff0000)); //LED 1 RED
  rgb_display_4.setPixelColor((2)-1, (0x3333ff)); //LED 2 BLUE
  rgb_display_4.setPixelColor((3)-1, (0xffff33)); //LED 3 YELLOW
  rgb_display_4.setPixelColor((4)-1, (0x33ff33)); //LED 4 GREEN
  rgb_display_4.setPixelColor((5)-1, (0xcc33cc)); //LED 5 PURPLE
  rgb_display_4.show();

}
Install "Adafruit_NeoPixel"first
   
   
   

Print this item

  KC868-D8
Posted by: Dm81 - 05-05-2022, 09:22 PM - Forum: KC868-HxB series Smart Controller - Replies (10)

Hello
I have a question about KC868-D8 in server mode
Is it correct that I don't receive command if I close any digital input on the board?
I think that a client connected to the KC868-D8 should be receive a command (or string) about output variation
thank you

Print this item

  KC868-COLB/BS/Mini V1.12 new firmware and PC software update
Posted by: admin - 05-05-2022, 02:00 AM - Forum: News - Replies (2)

improvement:

1. support one KC868-COLB/COLBS/COLB-Mini control multi relay board by "HTTP" command.
2. support create customsize command by "HTTP command".
3. translate "DEBUG" mode window to English language.

KC868-COLB V1.12 firmware download:

.zip   AD_COLB_V1_1_12_220503.zip (Size: 41.92 KB / Downloads: 786)

New PC software Kincony_SCB_V1.0.410.504 download:

.zip   Kincony_SCB_V1.0.410.504.zip (Size: 7.3 MB / Downloads: 910)



Attached Files Thumbnail(s)
           
Print this item

  [Arduino demo source code for KC868-A4]-13 work with KBOX phone app
Posted by: admin - 05-04-2022, 11:40 AM - Forum: KC868-A4 - Replies (6)

use for "KBOX" phone app in local network , without internet.


.zip   KBOX.zip (Size: 837 bytes / Downloads: 817)

Print this item

  Kc868-A4 KBOX App Code
Posted by: ahmedwizza - 05-04-2022, 11:12 AM - Forum: KC868-A4 - Replies (1)

please send me the code that give me ability to control A4 by KBOX app without internet.
As showmen as attached.



Attached Files Thumbnail(s)
   
Print this item

  A4 fault code
Posted by: ahmedwizza - 05-04-2022, 04:03 AM - Forum: KC868-A4 - Replies (1)

            I follow the vedio stipe by stipe . but I see my code different 
after changed the pine number 

like in attached photos

so send me the code in the vedio

Print this item

  KC868-H32B V4.44 new firmware update
Posted by: admin - 05-03-2022, 04:29 AM - Forum: News - Replies (9)

improvement:
add HTTP multi control relay command ( you can use one http command turn ON/OFF/toggle any relay) :
http command format:
http: //ip/sw_ctl.cgi?RealyMulSet=A8A7A6A5A4A3A2A1,B8B7B6B5B4B3B2B1,C8C7C6C5C4C3C2C1&postpwd=postpassword

A8A7A6A5A4A3A2A1 use for "TURN ON" 32 channel relay, every channel bit "1" means enable, bit "0" means disable
B8B7B6B5B4B3B2B1 use for "TURN OFF" 32 channel relay, every channel bit "1" means enable, bit "0" means disable
C8C7C6C5C4C3C2C1 use for "TOGGLE" 32 channel relay, every channel bit "1" means enable, bit "0" means disable
every Ax or Bx or Cx use by HEX format data.
   

For example:
if you want to
                 TURN ON  RELAY 32 31 30 29  (F0000000)
                 TURN OFF  RELAY 04 03 02 01  (0000000F)
                 TOGGLE  RELAY 24 23 22 21  (00F00000)
if your relay controller IP address is 192.168.1.200
if your post password is 12345

At last the HTTP command is :  http://192.168.1.200/sw_ctl.cgi?RealyMulSet=F0000000,0000000F,00F00000&postpwd=12345

   
After send this command: Relay32,31,30,29 will be ON,  Relay4,3,2,1 will be OFF,  Relay24,23,22,21 will be TOGGLE.



Attached Files
.zip   Relay32_V444_220503.zip (Size: 47.3 KB / Downloads: 835)
.pdf   KC868-H32B-http-command-2022-05-05.pdf (Size: 890.76 KB / Downloads: 988)
Print this item

  COLB and RFID reader
Posted by: hentes - 05-02-2022, 03:14 PM - Forum: DIY Project - Replies (4)

Hello. Is it possible to connect and use the Dahua ASR1100A ASR1100A (13.56MHz) RFID reader with COLB module? The RFIS reader has an RS485 connection. Thank you.

Print this item