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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 9,400
» Latest member: logisticsavenueconsulting
» Forum threads: 4,133
» Forum posts: 20,670

Full Statistics

Online Users
There are currently 55 online users.
» 0 Member(s) | 44 Guest(s)
Bing, Bytespider, Crawl, PetalBot, bot

Latest Threads
KC868 A8 + Home Assistant...
Forum: Development
Last Post: admin
1 hour ago
» Replies: 1
» Views: 2
Questions on the B4M
Forum: B4M
Last Post: admin
3 hours ago
» Replies: 1
» Views: 2
Ethernet static address
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
3 hours ago
» Replies: 5
» Views: 11
KCS firmware wishlist
Forum: "KCS" v2 firmware system
Last Post: admin
7 hours ago
» Replies: 3
» Views: 18
How to get started
Forum: KC868-A16
Last Post: admin
10 hours ago
» Replies: 29
» Views: 8,178
turn on one relay by mqtt...
Forum: KC868-A8v3
Last Post: admin
Yesterday, 12:26 AM
» Replies: 0
» Views: 13
Request for Type A Projec...
Forum: Apply for free sample product
Last Post: kyutimong
07-14-2026, 04:19 AM
» Replies: 0
» Views: 9
Loxone RS485
Forum: KinCony integrate with Loxone home automation
Last Post: admin
07-11-2026, 12:16 PM
» Replies: 16
» Views: 3,289
KinCony MT4 – 4CH ESP32 D...
Forum: News
Last Post: admin
07-11-2026, 03:01 AM
» Replies: 0
» Views: 52
[arduino code examples fo...
Forum: MT4
Last Post: admin
07-11-2026, 02:21 AM
» Replies: 0
» Views: 22

  can't connected to lan at first switch on brand new card
Posted by: kerdalle - 12-04-2024, 05:26 PM - Forum: KC868-A16 - Replies (10)

Good morning all,
I have just received brand new K868-A16 Rev:1.6 and connected to routeur 
scan ip give address at 192.168.1.200. with mac: ec:c9:ff:b5:f3:6f
I ping this address:
ping 192.168.1.200
PING 192.168.1.200 (192.168.1.200): 56 data bytes
64 bytes from 192.168.1.200: icmp_seq=0 ttl=255 time=6.079 ms
My problem : web ui 192.168.1.200:80 reply This site is inaccessible
192.168.1.200 does not allow connection.
I have scan this address with UDP Scan from 0 to 65535 without nothing open
So I can't go any further. I have check on forum but without any success
How i can first connect to my new K868-A16 or the first time which is so far a nice useless brick
Your help will be appreciated

Print this item

  Request for a free sample
Posted by: Radoslaw - 12-04-2024, 12:48 PM - Forum: Apply for free sample product - No Replies

Hello @ administrators and users,
I am an engineering student specializing in reducing energy consumption costs - electrical and thermal. I would like to learn about Kincona products for further development in the field of study (A). Can I apply for a sample of KC868-A4?

Print this item

Sad Speaker Not Working
Posted by: Juanma - 12-04-2024, 08:39 AM - Forum: KinCony AS - Replies (7)

Hello guys, I’ve spent a week trying to solve the following problem: the speaker doesn’t work in any way. I’ve tried many methods to get it working, such as reinstalling the software, reinstalling Home Assistant, and reinstalling everything from scratch. The voice activation command “Hey Jarvis” works, but the response is not heard through the speaker. I’m not sure if I’m doing something wrong or if the speaker is simply faulty. I’m attaching screenshots and a video showing how I have everything set up. I hope you can help me. Thank you. 

VIDEO:  https://youtu.be/3dvJ8tbW9W8
VIDEO2: https://youtu.be/EIVSB3mJAF8

Let me know if you need more information or anything else.



Attached Files
.txt   logs_jarvis2_compile.txt (Size: 143.54 KB / Downloads: 549)
.txt   jarvis.yaml.txt (Size: 3.98 KB / Downloads: 484)
Print this item

  3-24V into Digital Input
Posted by: johnsmith8439 - 12-04-2024, 07:52 AM - Forum: KC868-A16 - Replies (4)

Hello,
Does the digital input work with sensors that send 3-24V as output? No electricity = 0, electricity = 1?
https://www.aliexpress.com/item/1005007908525266.html
Something like that. 
Thank you.

Print this item

  how to integrate KC868-A8 to home assistant by MQTT
Posted by: admin - 12-04-2024, 12:26 AM - Forum: KC868-A8 - Replies (46)

step-1: download KCS firmware to KC868-A8 by USB-C cable
   
step2: set mqtt broker ip , port, user name, password for home assistant mosquitto broker. the ip and port according to home assistant's server.
   
   
   
step3: modify configuration.yaml file, add our code:
   

Code:
# Loads default set of integrations. Do not remove.
default_config:

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml


       
mqtt:
  switch:
   - name: 'a8-kcs-output-1'
     unique_id: a8-kcs-output-1
     state_topic: 'KC868_A8/B0A732859848/STATE'
     command_topic: 'KC868_A8/B0A732859848/SET'
     payload_on:  '{"output1":{"value":true}}'
     payload_off:  '{"output1":{"value":false}}'
     value_template: '{{ value_json.output1.value }}'
     state_on: true
     state_off: false

   - name: 'a8-kcs-output-2'
     unique_id: a8-kcs-output-2
     state_topic: 'KC868_A8/B0A732859848/STATE'
     command_topic: 'KC868_A8/B0A732859848/SET'
     payload_on:  '{"output2":{"value":true}}'
     payload_off:  '{"output2":{"value":false}}'
     value_template: '{{ value_json.output2.value }}'
     state_on: true
     state_off: false

   - name: 'a8-kcs-output-3'
     unique_id: a8-kcs-output-3
     state_topic: 'KC868_A8/B0A732859848/STATE'
     command_topic: 'KC868_A8/B0A732859848/SET'
     payload_on:  '{"output3":{"value":true}}'
     payload_off:  '{"output3":{"value":false}}'
     value_template: '{{ value_json.output3.value }}'
     state_on: true
     state_off: false

   - name: 'a8-kcs-output-4'
     unique_id: a8-kcs-output-4
     state_topic: 'KC868_A8/B0A732859848/STATE'
     command_topic: 'KC868_A8/B0A732859848/SET'
     payload_on:  '{"output4":{"value":true}}'
     payload_off:  '{"output4":{"value":false}}'
     value_template: '{{ value_json.output4.value }}'
     state_on: true
     state_off: false

   - name: 'a8-kcs-output-5'
     unique_id: a8-kcs-output-5
     state_topic: 'KC868_A8/B0A732859848/STATE'
     command_topic: 'KC868_A8/B0A732859848/SET'
     payload_on:  '{"output5":{"value":true}}'
     payload_off:  '{"output5":{"value":false}}'
     value_template: '{{ value_json.output5.value }}'
     state_on: true
     state_off: false

   - name: 'a8-kcs-output-6'
     unique_id: a8-kcs-output-6
     state_topic: 'KC868_A8/B0A732859848/STATE'
     command_topic: 'KC868_A8/B0A732859848/SET'
     payload_on:  '{"output6":{"value":true}}'
     payload_off:  '{"output6":{"value":false}}'
     value_template: '{{ value_json.output6.value }}'
     state_on: true
     state_off: false

   - name: 'a8-kcs-output-7'
     unique_id: a8-kcs-output-7
     state_topic: 'KC868_A8/B0A732859848/STATE'
     command_topic: 'KC868_A8/B0A732859848/SET'
     payload_on:  '{"output7":{"value":true}}'
     payload_off:  '{"output7":{"value":false}}'
     value_template: '{{ value_json.output7.value }}'
     state_on: true
     state_off: false

   - name: 'a8-kcs-output-8'
     unique_id: a8-kcs-output-8
     state_topic: 'KC868_A8/B0A732859848/STATE'
     command_topic: 'KC868_A8/B0A732859848/SET'
     payload_on:  '{"output8":{"value":true}}'
     payload_off:  '{"output8":{"value":false}}'
     value_template: '{{ value_json.output8.value }}'
     state_on: true
     state_off: false



  binary_sensor:
   - name: 'a8-kcs-input-1'
     unique_id: a8-kcs-input-1
     state_topic: 'KC868_A8/B0A732859848/STATE'
     value_template: '{{ value_json.input1.value }}'
     payload_on: true
     payload_off: false

   - name: 'a8-kcs-input-2'
     unique_id: a8-kcs-input-2
     state_topic: 'KC868_A8/B0A732859848/STATE'
     value_template: '{{ value_json.input2.value }}'
     payload_on: true
     payload_off: false

   - name: 'a8-kcs-input-3'
     unique_id: a8-kcs-input-3
     state_topic: 'KC868_A8/B0A732859848/STATE'
     value_template: '{{ value_json.input3.value }}'
     payload_on: true
     payload_off: false

   - name: 'a8-kcs-input-4'
     unique_id: a8-kcs-input-4
     state_topic: 'KC868_A8/B0A732859848/STATE'
     value_template: '{{ value_json.input4.value }}'
     payload_on: true
     payload_off: false

   - name: 'a8-kcs-input-5'
     unique_id: a8-kcs-input-5
     state_topic: 'KC868_A8/B0A732859848/STATE'
     value_template: '{{ value_json.input5.value }}'
     payload_on: true
     payload_off: false

   - name: 'a8-kcs-input-6'
     unique_id: a8-kcs-input-6
     state_topic: 'KC868_A8/B0A732859848/STATE'
     value_template: '{{ value_json.input6.value }}'
     payload_on: true
     payload_off: false

   - name: 'a8-kcs-input-7'
     unique_id: a8-kcs-input-7
     state_topic: 'KC868_A8/B0A732859848/STATE'
     value_template: '{{ value_json.input7.value }}'
     payload_on: true
     payload_off: false

   - name: 'a8-kcs-input-8'
     unique_id: a8-kcs-input-8
     state_topic: 'KC868_A8/B0A732859848/STATE'
     value_template: '{{ value_json.input8.value }}'
     payload_on: true
     payload_off: false
yaml file download: 
.txt   HA-A8-MQTT-OUTPUT-INPUT.txt (Size: 4.8 KB / Downloads: 704)
step4: replace all ID by your own board, you can check ID from KCS "index" webpage.
   
step5: save the yaml file by click "save" button. Then ready to restart of home assistant.
   
step6: go to "setting" -- "system" webpage, restart your home assistant.
   
step7: Now you can found new entities in "Setting" -- “Device & services" -- "Entities" webpage. all have listed, you just add to home assistant dashboard is OK.
   

yaml file download: 
.txt   A8-KCS-MQTT-HA-yaml.txt (Size: 4.51 KB / Downloads: 438)

Print this item

  RS_485
Posted by: ka.mobo - 12-03-2024, 01:19 PM - Forum: Development - Replies (3)

Hello 
i have KC868-A6 Controller I want To Connect it as Modbus RS-485 A-B wires,  Between  (Sensor Flow ) & controller to monitor data on Arduino Ide using serial monitor . How To Do That ? 
Sensor Flow device Address register map is :

Code:
Register Address Register Type Description Access
40001 (0) Holding Register (4x) Flow Rate Read-only
40002 (1) Holding Register (4x) Temperature Read-only
40003 (2) Holding Register (4x) Pressure Read-only
40010 (9) Holding Register (4x) Flow Totalizer Reset Write-only
40020 (19) Holding Register (4x) Device ID Read/write
40050 (49) Holding Register (4x) Alarm Status Read-only
This table represents:
• Flow Rate (40001): A flow sensor reading available in this register for monitoring.
• Temperature (40002): Temperature sensor data available for monitoring.
• Flow Totalizer Reset (40010): This register allows you to reset the totalizer (write-only).
• Alarm Status (40050): Alarm indications and codes can be read from this register.
Access Types:
• Read-only: You can only retrieve data.
• Write-only: You can only send data (like resetting a value).
• Read/Write: Both reading and writing are allowed.
Modbus Function Codes for Register Access:
• 01 – Read Coils (for 0x addresses)
• 02 – Read Discrete Inputs (for 1x addresses)
• 03 – Read Holding Registers (for 4x addresses)
• 04 – Read Input Registers (for 3x addresses)
• 05 – Write Single Coil
• 06 – Write Single Holding Register
• 16 – Write Multiple Registers


Can any one Help me please ?

Print this item

  KC868-server automations
Posted by: Mandlap - 12-03-2024, 12:36 PM - Forum: KC868-Server Raspberry Pi4 local server - Replies (6)

Hello, I have updated my HA OS to 13.2. I'm able to control the binary.inputs and switch.outputs. 
All the automations i have created have disappeared in my Home Assistant. 
Automation and scenes have been separated, now there is automations and scenes separately. 
I tried to create new automations on KC868-Server, but it doesn't allow recognise my binary.inputs and switch.outputs when trying to create automations.

Print this item

  2 questions motors & touch
Posted by: llamich - 12-03-2024, 05:25 AM - Forum: KC868-A series and Uair Smart Controller - Replies (7)

I need help to control a 12V DC 5A motor (2 wires) to make it rotate in both directions. Is this possible with the KC868-A16? 

On the other hand, is it possible to use the TTP223 touch sensors as inputs, which have a working voltage of 2.5 to 5.5V?

Print this item

Question All outputs turn off every once in a while
Posted by: bartekm - 12-02-2024, 07:15 PM - Forum: KC868-A16 - Replies (7)

Hello Admin,
I would like to ask you about solving my problem which is that all outputs of my KC868-A16 are turning off every once in a while. It happens randomly in time - sometimes after few minutes and sometimes after dozen of minutes.

Board (rev 1.6) is configured using esphome yaml and connected to HA server. Also I have more than one of your KC868-A16 and it happens for other boards also. I checked installation and it seems it is not problem with power supply because I caught and meter when it happens - network voltage was stable 240V and power supply (good quality one with high amperage) was also stable 11,98V.

I made some more investigations and what I noticed is that it seems it happens only when HA server is turned off (mini pc is turned off).
So summarizing I would to ask you:

1. have you experienced any disturbances in functioning for this or other boards configured using esphome when HA server is not available? if yes then is there anything what I can do? add some yaml configuration?
2. is it possible to force board to remember state of outputs? so even if there will be power outage or such reset than it will bring back output state? (of course light will flicker in this scenario)
3. is there any way to debug board errors in real time somehow in my configuration? I mean some log file which can help identify cause of this problem?

I would be grateful for your help and suggestions,
Bartek

Print this item

Question Door Access Control System
Posted by: PeterOo - 12-02-2024, 08:17 AM - Forum: KC868-HxB series Smart Controller - Replies (3)

Hi,

    As per the link below, 

       https://www.kincony.com/remote-access-co...ution.html

I found out that KC868 relay controllers can be configured to be used as door access control system. But, in that solution, I only found out ( or may be I missed out ) magnetic door locks and exit buttons used with controller.
I wonder if there are any possible solutions to use proximity card reader (with Weigand interface, later, convert to RS485 from Weigand) with the relay controllers. Could you please suggest me a way to integrate door access control system to KINCONY relay controller? Or, if you have any recommended card readers of any kinds or KINCONY's own card reader models, please enlighten me. I would like to integrate door access control system in my smart home project. Thanks in advance.

Print this item