KC868-H32B V4.43 new firmware update - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=1) +--- Forum: News (https://www.kincony.com/forum/forumdisplay.php?fid=5) +--- Thread: KC868-H32B V4.43 new firmware update (/showthread.php?tid=1802) Pages:
1
2
|
KC868-H32B V4.43 new firmware update - admin - 04-03-2022 improvement: mainly support integrate to Loxone Mini-Server by RS232 port. 1. after INPUT trigger (when released input with GND) will auto feedback "DIARM" message to TCP client and RS232. such as if you let INPUT short with GND, will send "RELAY-ALARM-1,OK" , that means: INPUT-1 is trigger. when released, will send "RELAY-DIARM-1,OK" , that means: INPUT-1 is released, just "disable alarm". 2. It supports sending multiple control relay commands to the KC868-H32B at one time by RS232 or TCP. The controller will process them in a queue without discarding the commands. At most, MAX 32 commands can be received at the same time such as you can send these command at one time by RS232 or TCP: RELAY-SET-255,1,1 RELAY-SET-255,2,1 RELAY-SET-255,3,1 RELAY-SET-255,4,1 RELAY-SET-255,5,1 RELAY-SET-255,6,1 RELAY-SET-255,7,1 RELAY-SET-255,8,1 RELAY-SET-255,9,1 RELAY-SET-255,10,1 RELAY-SET-255,11,1 RELAY-SET-255,12,1 RELAY-SET-255,13,1 RELAY-SET-255,14,1 RELAY-SET-255,15,1 RELAY-SET-255,16,1 RELAY-SET-255,17,1 RELAY-SET-255,18,1 RELAY-SET-255,19,1 RELAY-SET-255,20,1 RELAY-SET-255,21,1 RELAY-SET-255,22,1 RELAY-SET-255,23,1 RELAY-SET-255,24,1 RELAY-SET-255,25,1 RELAY-SET-255,26,1 RELAY-SET-255,27,1 RELAY-SET-255,28,1 RELAY-SET-255,29,1 RELAY-SET-255,30,1 RELAY-SET-255,31,1 RELAY-SET-255,32,1 Relay32_V443_220402.zip (Size: 47.02 KB / Downloads: 299) download the ZIP file , unzip update the bin file for KC868-H32B relay controller by USB-RS232 cable. RE: Program KC868-H32B using Node Red - saun2000 - 04-12-2022 You all are experts and you can do a program with your eyes closed. But for us its pretty hared as we are following the YouTube video. Therefore can you do a new video to program KC868-H32B to work with Alexa using Node Red please? RE: KC868-H32B V4.43 new firmware update - admin - 04-13-2022 Do you have seen this video: https://youtu.be/LCc8M20MXIs it's KC868-H32BS work with Alexa, H32B is same. RE: KC868-H32B V4.43 new firmware update - saun2000 - 04-15-2022 (04-13-2022, 12:13 AM)admin Wrote: Do you have seen this video: https://youtu.be/LCc8M20MXIs I already program with node red and all 32 acannels are working with alexa. Now what I want to to connect KC868-H32B relay module to Alexa. I just cant find this location where I have to change MQTT parameters.https://www.kincony.com/kc868-h32b-integ...-mqtt.html RE: KC868-H32B V4.43 new firmware update - admin - 04-16-2022 take a photo of your controller. RE: KC868-H32B V4.43 new firmware update - Sbor - 05-05-2022 After updating the firmware to 4.43, the TCP connection began to fall off. It is restored only after restarting the controller. The controller works in conjunction with the switch terminal board. RE: KC868-H32B V4.43 new firmware update - admin - 05-05-2022 the newest is V4.44, you can download, if have any problem, leave message. RE: KC868-H32B Controller - saun2000 - 05-06-2022 (04-03-2022, 08:08 AM)admin Wrote: Dear Sir, How do we program at least one relay of this module to an inching mode without on /off. I need to use that for my garage door. RE: KC868-H32B V4.43 new firmware update - admin - 05-06-2022 which app you using? RE: KC868-H32B V4.43 new firmware update - saun2000 - 05-07-2022 Dear Sir, I am using home assistant on raspberry pi, and I am also using the following commands for on/off my H32B relay control module. It works fine. But I need JUST ONE RELAY with INCHING feature, because i want to use that relay to open/close my garage door. Thank you switch: - platform: mqtt name: 'relay32B-1' unique_id: relay32B-1 state_topic: 'relay32/80f9caa4068e7805b09f9a6a/state' command_topic: 'relay32/80f9caa4068e7805b09f9a6a/set' payload_on: '{"relay1":{"on":1}}' payload_off: '{"relay1":{"on":0}}' value_template: '{{ value_json.relay1.on }}' state_on: 1 state_off: 0 - platform: mqtt name: 'relay32B-2' unique_id: relay32B-2 state_topic: 'relay32/80f9caa4068e7805b09f9a6a/state' command_topic: '80f9caa4068e7805b09f9a6a/set' payload_on: '{"relay2":{"on":1}}' payload_off: '{"relay2":{"on":0}}' value_template: '{{ value_json.relay2.on }}' state_on: 1 state_off: 0 - platform: mqtt name: 'relay32B-3' unique_id: relay32B-3 state_topic: 'relay32/80f9caa4068e7805b09f9a6a/state' command_topic: 'relay32/80f9caa4068e7805b09f9a6a/set' payload_on: '{"relay3":{"on":1}}' payload_off: '{"relay3":{"on":0}}' value_template: '{{ value_json.relay3.on }}' state_on: 1 state_off: 0 |