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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,713
» Latest member: parkangalychyna
» Forum threads: 3,821
» Forum posts: 19,546

Full Statistics

Online Users
There are currently 37 online users.
» 0 Member(s) | 22 Guest(s)
AhrefsBot, Amazonbot, Bytespider, Crawl, PetalBot, bot

Latest Threads
N10 port modbus
Forum: N10
Last Post: admin
8 minutes ago
» Replies: 11
» Views: 97
N60/N30/N20/N10 PC softwa...
Forum: N60
Last Post: admin
9 minutes ago
» Replies: 3
» Views: 599
N60 N30 N20 N10 ARM CPU f...
Forum: N60
Last Post: admin
14 minutes ago
» Replies: 0
» Views: 5
KinCony ALR ESP32 I/O pin...
Forum: KinCony ALR
Last Post: admin
7 hours ago
» Replies: 6
» Views: 1,535
KC868-A6v3 ESP32-S3 6 cha...
Forum: KC868-A6
Last Post: admin
7 hours ago
» Replies: 1
» Views: 20
RF fo KC868-A6
Forum: KC868-A6
Last Post: admin
7 hours ago
» Replies: 5
» Views: 807
Device change after damag...
Forum: Getting Started with ESPHome and Home Assistant
Last Post: admin
10 hours ago
» Replies: 1
» Views: 9
sample code to receive ht...
Forum: F16
Last Post: admin
Yesterday, 03:53 AM
» Replies: 14
» Views: 615
KinCony B32M Smart Contro...
Forum: News
Last Post: admin
Yesterday, 01:44 AM
» Replies: 0
» Views: 20
B32M ESPHome yaml for hom...
Forum: B32M
Last Post: admin
Yesterday, 01:32 AM
» Replies: 0
» Views: 14

  KC868-H32B V4.32 new firmware update
Posted by: admin - 07-26-2021, 12:44 AM - Forum: News - No Replies

improvement:
1. Support connect to 2 cloud server work at the same time by UDP (KinCony's Cloud server) and MQTT (private MQTT broker server)

2. Fixed controller have delay time when send a large number of commands control relay in TCP Server mode.

3. Add wifi and ethernet reset command by RS232 for manufactory. send command set ethernet and wifi module work as "DHCP" and "UDP" mode. (This not for end user)

KC868-H32B V4.32 firmware download: firmware only for KC868-H32B

.zip   Relay32_V432_210725.zip (Size: 44.92 KB / Downloads: 716)

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

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

Print this item

  Lesson17- Remote control KC868-A4 relay by free MQTT broker server
Posted by: admin - 07-20-2021, 12:55 AM - Forum: KC868-A series and Uair Smart Controller - No Replies


Arduino IDE source code: 
.zip   Remote-control-KC868-A4-relay-by-free-MQTT-broker-server.zip (Size: 1.9 KB / Downloads: 1187)

Print this item

Sad KC868-32(L) firmware update Issue [Solved]
Posted by: democles9308 - 07-19-2021, 07:45 PM - Forum: KC868-HxB series Smart Controller - Replies (9)

Hello community,
Need some help with updating  to latest firmware
Setting :
   
- KC868 -32 : on cover indicated as 32BC2009xxxxx? on PCB indicated as 32L 
- Current firmware : V1.598
- no webpage available? : no response from http://192.168.41.123 ( IP address board)

When I update via the tool KC868-Controller-bootloader every things look fine but when restarting  no change ( on info via vircom)
V401_210205.bin : after 'run' command/restart  relays 2, 3,4,5  toggle on/off ( was an old test-scene programmed before firmware update saga) - no connection possible with PC software (old & new tool)
V419_210621.bin : idem
V420_210416.bin : after 'run' command/restart relay 2 comes on & stays on - no web access - no control via PC tool
V424_210509.bin : after 'run' command/restart relay 2 comes on & stays on - no web access - no control via PC tool
V429_210522.bin : no relays activated - no web gui - no control via pc control

Can I receive some  firmware in Hex (did not found them yet) format to upload it via ST-Tool?
Any other help greatly appreciated

Democles

Print this item

  KC868-H8B new firmware for MQTT and HTTP functions
Posted by: admin - 07-17-2021, 01:04 AM - Forum: News - No Replies

improvement:
1. add relay control by webpage
2. support http command for developer integrate to third-party software to tun on/off relay and read relay state.
3. add web config password
4. add read input state http command for developer integrate to third-party software. you can send http command to get information of 6 channel digital input port state.
Command is like this, send:  http://192.168.1.xx/sw_ctl.cgi?RelayFF=R...pwd=XXXXXX
Then will feedback all state.
5. support use MQTT function by Ethernet or WiFi. it will easy integrate to third-party software, like home assistant...
how to integrate to home assistant by MQTT, see this link: https://www.kincony.com/kc868-h32b-integ...-mqtt.html
6. add option on config webpage, you can chose whether relay will remember the state before power off. Just whether receover relay sate when power on.
7. add option on config webpage, you can chose any relay channel for momentary work mode, and set the delay time for auto off. Relay "Momentary Time" extend to "1-10000 seconds"
8. add scan device Broadcast command for UDP. This command for software developer scan KC868-H32B in network.
use local network port=4000  send Ansi-String "scan" to remote IP:255.255.255.255 Port:4001
all KC868-H8B in same network device will feedback: device's IP,Port,UID,type
for example:
send->scan
feedback: 192.168.1.200:4196,uid:xxxxxxxxxxxxxxxxxxxxxxxx,type:H8B
9. Improve the stability of anti-interference, if ethernet line failure by interference , now will automatic restart ethernet chip.
make sure your KC868-H8B metal box top lable have "AT" words, like this photo. so that have 256KB flash memory enough for update. If not use the MCU chip, if you can weld, replace the MCU will support new firmware.
[Image: h8b-mqtt.jpg]
if you use MQTT, as follows:
Set your ethernet for MQTT in network setting webpage, set the broker IP,Port, MQTT user name and password.
Example configuration.yaml entry for relay1 output:
switch:
– platform: mqtt
name: ‘relay8B-1’
unique_id: relay8B-1
state_topic: ‘relay8/xxxxxxxxxxxxxxxxxxxxxxxx/state’
command_topic: ‘relay8/xxxxxxxxxxxxxxxxxxxxxxxx/set’
payload_on: ‘{“relay1”:{“on”:1}}’
payload_off: ‘{“relay1”:{“on”:0}}’
value_template: ‘{{ value_json.relay1.on }}’
state_on: 1
state_off: 0
Example configuration.yaml entry for input1 sensor:
binary_sensor:
– platform: mqtt
name: ‘H8B-input1’
unique_id: H8B-input1
state_topic: ‘relay8/xxxxxxxxxxxxxxxxxxxxxxxx/state’
value_template: ‘{{ value_json.input1.on }}’
payload_on: 1
payload_off: 0
Note: xxxxxxxxxxxxxxxxxxxxxxxx is your KC868-H8B’s ID, it’s 24bit. You can find in controller’s config webpage.

KC868-H8B V4.29 firmware download:


.zip   Relay8_V429_210716.zip (Size: 39.39 KB / Downloads: 758)
download the ZIP file , unzip update the bin file for KC868-H8B relay controller by USB-RS232 cable.

Print this item

  Smart Home App
Posted by: afm1958 - 07-16-2021, 05:28 PM - Forum: KC868-HxB series Smart Controller - Replies (7)

I just bought an H32B in order to control, through the smartphone, various equipment in my house (garage doors, lighting, etc..). From the tests I've done it seems to me that the hardware is reliable but the supporting application software is not very user friendly and difficult to understand how to configure and work. I ask, are you planning to improve support applications, namely "Smart Home"?

Print this item

  Multi-Board-Ctrl PC software update for save LOG for KC868-COLB/COL
Posted by: admin - 07-16-2021, 02:26 AM - Forum: News - Replies (1)

new version will have auto save LOG file function for KC868-COLB or KC868-COL logical controller.
when digital input state changed, will save IP ,Data,Time, Input channel, current state to TXT file. Each controller generates a separate TXT file. Every day will  generates a separate TXT file.
   

Print this item

  2wire 4-20ma water sensor
Posted by: ajandali - 07-11-2021, 04:03 PM - Forum: KC868-HxB series Smart Controller - Replies (8)

Hi, I want to know if I can use KC868-COLB Logical Controller to measure water level using the 2wire 4-20ma water sensor. Picture below.



Attached Files Thumbnail(s)
   
Print this item

Information How to install 4 floor building connection wiring
Posted by: giash - 07-10-2021, 07:11 PM - Forum: KC868-HxB series Smart Controller - Replies (3)

How to install 4 floor building every floor 3 room and every room have power switch board, also garage floor have all meter so how to wiring all connection please share your any layout or design.

Print this item

  KinCony Smart Home
Posted by: SERKUZ2210 - 07-09-2021, 05:25 AM - Forum: KC868-HxB series Smart Controller - Replies (9)

Добрый день. У меня проблема с добавлением контроллера KC868-H32W в KinCony Smart Home. Посмотрите, пожалуйста, скриншоты, что я делаю не так?https://cloud.mail.ru/public/smVc/gSdw3u4i6

Print this item

  Home Automation design
Posted by: admin - 07-08-2021, 12:21 AM - Forum: KC868-HxB series Smart Controller - Replies (2)

Question:

Dear Sirs,

I'm building a new house of about 300 m2 and I would like to apply wired home automation but also to be prepared for the future.
I've estimated to have about wired 150 IO's.

My specs:
- About 25 multi-button switches (to control lights, blinds, AC and Ventilation)
- About 35 groups of Led lighting (on-off) and 6 dimmer Led strips
- 5 garden watering points
- 1 Garage door
- 1 Car Entry Gate
- 1 Video Door
- Pool System (pump, chemical control)
- Alarm System
- 11 Door Contacts
- Some reserves
- 1 Centralized Display to control all the house (trough PoE)
- Wireless connection through Zigbee, Z-Wave, EnOcean (last as option)
- Possibility to control it from outside my house

I've seen your system and I've really liked but I've some questions regarding the maximum IO's available and if it's possible to put 2 or 3 systems communicating to each other (for example, 1 controller on the ground floor, another on the 1st and another on the 2nd floor)

Please, can you give me details about how your system can help me to achieve to my goals?
For the moment, the only way that I've found to achieve my goal is through KNX (for me too expensive) or using PLC's but these ones very limited to enter through Zigbee or Z-Wave).

Thank you and best regards,

Print this item