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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,971
» Latest member: itzgreenpoiis0
» Forum threads: 2,423
» Forum posts: 12,543

Full Statistics

Online Users
There are currently 36 online users.
» 1 Member(s) | 20 Guest(s)
AhrefsBot, Bytespider, Crawl, Google, PetalBot, Yandex, bot, shell

Latest Threads
Sms relays control
Forum: KC868-A8S
Last Post: Michele
9 hours ago
» Replies: 6
» Views: 21
new home automation
Forum: DIY Project
Last Post: admin
10 hours ago
» Replies: 1
» Views: 7
Energy consumption not me...
Forum: KC868-M16 / M1 / MB / M30
Last Post: sebastianfs
Today, 05:26 AM
» Replies: 2
» Views: 30
M30 energy consumption no...
Forum: KC868-M16 / M1 / MB / M30
Last Post: admin
Yesterday, 11:51 PM
» Replies: 1
» Views: 8
[Arduino IDE demo source ...
Forum: KC868-A16
Last Post: admin
Yesterday, 11:49 PM
» Replies: 10
» Views: 2,948
KC868-A8 board esphome + ...
Forum: KC868-A8
Last Post: admin
Yesterday, 11:47 PM
» Replies: 9
» Views: 50
Nextion display work with...
Forum: KC868-A4
Last Post: admin
Yesterday, 11:47 AM
» Replies: 5
» Views: 1,924
New KC868-A32 Arduino ESP...
Forum: Suggestions and feedback on KinCony's products
Last Post: admin
Yesterday, 11:45 AM
» Replies: 3
» Views: 16
A16 and HC-SR04
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 11:44 AM
» Replies: 1
» Views: 27
KC868-A4 with Nextion 5 i...
Forum: KC868-A4
Last Post: YOO SEOK
Yesterday, 01:54 AM
» Replies: 2
» Views: 2,823

  KC868-H32BS V1.43 new firmware update
Posted by: admin - 12-13-2021, 12:25 AM - Forum: News - Replies (2)

improvement:

add mqtt "TOGGLE" command.
for example:
Payload={"relay1":{"on":1}}    relay1:ON
Payload={"relay1":{"on":0}}    relay1:OFF
Payload={"relay1":{"on":2}}    relay1: toggle (ON->OFF or OFF->ON) new firmware add this command


.zip   H32BS_V143_211212.zip (Size: 53.24 KB / Downloads: 280)
download the ZIP file , unzip update the bin file for KC868-H32BS relay controller by USB-RS232 cable.

Print this item

Photo KC868-COLBS MQTT control of relays OUT
Posted by: McG - 12-09-2021, 01:04 PM - Forum: KC868-HxB series Smart Controller - Replies (1)

Hi,
actually it seems that the COLBS relays output could not be controlled via MQTT.
According with the feature 12 of your website it was supposed, in my opinion, this feature is available.
[Image: KC868-COLBS3_05.jpg]
Is it possible for you to include this feature in the next firmare release?
Many thanks for your help.
McG.

Print this item

  integrate home assistant by http url command sample
Posted by: admin - 12-08-2021, 08:13 AM - Forum: Development - Replies (2)

here is a http url command integrate with home assistant config demo sample for button5 (thanks for our customer supplied the config code)

- platform: command_line
  switches:
    poolbtn5:
        command_on: "curl -k --silent 'http://192.168.1.136/sw_ctl.cgi?Relay05=ON&postpwd=12345'"
        command_off: "curl -k --silent 'http://192.168.1.136/sw_ctl.cgi?Relay05=OFF&postpwd=12345'"
        command_state: curl -k --silent 'http://192.168.1.136/sw_ctl.cgi?RelayFF=RD&postpwd=12345' | grep -oP "(?<=btn5)(.*)(?=btn6)"
        value_template: '{{"ON" in value}}'
        friendly_name: poolbtn5

Print this item

  KC868-H32BS V1.42 new firmware update
Posted by: admin - 12-05-2021, 02:45 AM - Forum: News - Replies (2)


improvement:

add "SW trigger output" option in config webpage.

   

"SW trigger output" Enable:

32 channel Switch button control 32 channel output.

a. such as key1 press 1 time will trigger output1. key2 press 1 time will trigger output2. key3 press 1 time will trigger output3. ....... until key32 press 1 time will trigger output32.
b. support "double click" define everyone of 32 key's function.
c. ALL ON button: turn ON all (32 channel) output
d. ALL OFF button: turn OFF all (32 channel) output

"SW trigger output" Disable:

a. switch button will not control output directly, but will feedback message by TCP string or by MQTT message.
b. if ethernet work mode = "TCP Server" or "TCP Client" will feedback:

RELAY-COM-255,x,y,OK

x is switch button number
y is channel x's output relay last state

for example:
RELAY-COM-255,2,1,OK  means: switch button2 have pressed, now the output2 is ON (because it is 1)
RELAY-COM-255,3,0,OK  means: switch button3 have pressed, now the output2 is OFF (because it is 0)

RELAY-COM-255,33,0,OK  means: switch button33 (ALL OFF) have pressed, now all output is ON
RELAY-COM-255,34,0,OK  means: switch button34 (ALL ON) have pressed, now all output is OFF

c. if ethernet work mode = "MQTT" will feedback:

{"SWx":{"on":y}}

x is switch button number (1-34)  33: "ALL OFF" button  34: "ALL ON" button
y is click times. number (1-6,99) 1: one click 2: double click 3: three times click 4: four times click 5: five times click 6: >=6 times click  if "hold on" button >3 seconds y=99 

for example:
{"SW10":{"on":1}}  means switch10 press 1 time
{"SW11":{"on":2}}  means switch11 press 2 time
{"SW12":{"on":3}}  means switch12 press 3 time
{"SW13":{"on":4}}  means switch13 press 4 time
{"SW14":{"on":5}}  means switch14 press 5 time
{"SW15":{"on":6}}  means switch15 press 6 time or maybe > 6 times
{"SW16":{"on":99}}  means switch16 is hold on (long time pressed > 3 seconds)
---------------------------------------------------------------------------------
{"SW33":{"on":1}}  means "ALL OFF" button pressed
{"SW33":{"on":0}}  means "ALL OFF" button released

{"SW34":{"on":1}}  means "ALL ON" button pressed
{"SW34":{"on":0}}  means "ALL ON" button released


.zip   H32BS_V142_211205.zip (Size: 53.1 KB / Downloads: 281)
download the ZIP file , unzip update the bin file for KC868-H32BS relay controller by USB-RS232 cable.

Print this item

  KC868-H16B V4.35 new firmware update
Posted by: admin - 12-03-2021, 03:22 AM - Forum: News - Replies (4)

improvement:

1. Fixed lack input7, input8 feedback state message by HTTP command.

download the ZIP file , unzip update the bin file for KC868-H16B relay controller by USB-RS232 cable.

.zip   Relay16_V435_211203.zip (Size: 43.7 KB / Downloads: 417)

firmware update tool download: https://www.kincony.com/download/KC868-C...loader.zip

Print this item

  Lesson31- How to decode 433MHz RF signal and control RF device by ESPHome
Posted by: admin - 12-01-2021, 12:36 AM - Forum: KC868-A series and Uair Smart Controller - Replies (16)


esphome:
  name: kc868-a4
  platform: ESP32
  board: esp32dev

# Enable logging
logger:

# Enable Home Assistant API
api:

wifi:
  ssid: "KinCony"
  password: "xxxxxxxx"


captive_portal:

web_server:
  port: 80

remote_receiver:
  pin: 19
  dump:
    - rc_switch
  tolerance: 50%
  filter: 250us
  idle: 4ms
  buffer_size: 2kb

 
remote_transmitter:
  pin: 21
  # RF uses a 100% carrier signal
  carrier_duty_percent: 100%

switch:
  - platform: template
    name: RF Power Button
    turn_on_action:
      - remote_transmitter.transmit_rc_switch_raw:
          code: '0101011111111101000000111'
          protocol: 1
          repeat:
            times: 2
            wait_time: 20ms

    turn_off_action:
      - remote_transmitter.transmit_rc_switch_raw:
          code: '0101011111111101000000111'
          protocol: 1
          repeat:
            times: 2
            wait_time: 20ms

Print this item

  Lesson30- How to decode IR signal and control air conditioning and TV by ESPHome
Posted by: admin - 11-30-2021, 04:11 AM - Forum: KC868-A series and Uair Smart Controller - No Replies


esphome:
  name: kc868-a4
  platform: ESP32
  board: esp32dev

# Enable logging
logger:

# Enable Home Assistant API
api:

wifi:
  ssid: "KinCony"
  password: "xxxxxxxx"


captive_portal:

web_server:
  port: 80

remote_receiver:
  pin:
    number: 23
    inverted: True
  dump: all

 
remote_transmitter:
  pin:
    number: 22
  carrier_duty_percent: 50%

switch:
  - platform: template
    name: "TV Power"
    turn_on_action:
      - remote_transmitter.transmit_nec:
          address: 0x00BD
          command: 0x807F
          repeat:
            times: 10
            wait_time: 50ms
    turn_off_action:
      - remote_transmitter.transmit_nec:
          address: 0x00BD
          command: 0x807F
          repeat:
            times: 10
            wait_time: 50ms

Print this item

  KC868-A8 - RS485
Posted by: esha - 11-29-2021, 06:14 PM - Forum: KC868-A8 - Replies (5)

Is there any possibility of RS485 connection ?

Print this item

  KC868-h32b goes down.
Posted by: heyheyhey - 11-29-2021, 07:03 AM - Forum: KC868-HxB series Smart Controller - Replies (1)

Hello everyone!

I have same problem like this posting https://www.kincony.com/forum/showthread.php?tid=1178

Did you solve this problem?

Problems I am facing.

1. KC868-H32B is setup with magnetic contactor and RC snubber. but sometimes it goes down. MQTT No response.

2. When it was not working. The setup page like this.


subnet mask and gateway changed.
3. When connecting included WIFI antenna. KC868-H32b goes down.

I look forward to your feedback..



Attached Files Thumbnail(s)
   
Print this item

  COL - start index error
Posted by: athxp - 11-27-2021, 05:23 PM - Forum: KC868-HxB series Smart Controller - Replies (15)

Hello, after creating some rules in the IFTTT page I got this error message you see in the image. it looks like something related to the name. it just does it to me with IFTTT number 3 and 4. how can i solve?



Attached Files Thumbnail(s)
   
Print this item