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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,486
» Latest member: exoticdreamdcus
» Forum threads: 3,711
» Forum posts: 19,127

Full Statistics

Online Users
There are currently 23 online users.
» 0 Member(s) | 11 Guest(s)
AhrefsBot, Amazonbot, Applebot, Crawl, PetalBot, bot

Latest Threads
T16M not responding on US...
Forum: T16M
Last Post: robarends
11 hours ago
» Replies: 5
» Views: 86
Voltage wrong
Forum: N30
Last Post: Painy
Yesterday, 08:38 AM
» Replies: 1
» Views: 53
Which CT clamps for the N...
Forum: N30
Last Post: admin
Yesterday, 08:28 AM
» Replies: 3
» Views: 446
F32 and 433 Mhz
Forum: F32
Last Post: admin
Yesterday, 01:20 AM
» Replies: 5
» Views: 48
KinCony E8v3 RS485 Din Ra...
Forum: News
Last Post: admin
01-23-2026, 02:13 AM
» Replies: 0
» Views: 19
KinCony E24v3 RS485 Din R...
Forum: News
Last Post: admin
01-23-2026, 01:32 AM
» Replies: 0
» Views: 9
Connect um330 and kc828 a...
Forum: DIY Project
Last Post: admin
01-23-2026, 01:14 AM
» Replies: 34
» Views: 3,773
F16 tuya reverse sw. func...
Forum: F16
Last Post: admin
01-23-2026, 12:07 AM
» Replies: 1
» Views: 14
Relay board wiring error?
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
01-23-2026, 12:04 AM
» Replies: 1
» Views: 31
KC868-A16 ethernet work w...
Forum: KC868-A16
Last Post: Konstantin
01-22-2026, 05:26 PM
» Replies: 23
» Views: 16,445

  wired gas sensor pin define
Posted by: admin - 10-31-2024, 01:52 AM - Forum: Extender module - No Replies

   
1: +12V
2: GND
3-4: relay output

Print this item

  A64 error
Posted by: arksop - 10-30-2024, 05:52 PM - Forum: KC868-A64 - Replies (1)

I have implemented a kc-868-a64 and AIO in my home. 

AIO is working perfectly but A64 is making problem.

when i turn relay manually  it show on A64 that is turned on. When i turn it on A64 via KCS its not turning on relays and turn all output lights on A64.

i was trying v2 software and v1. 

the same error.


Can you please help me with this?


below video for visualisation of problem.


Print this item

  A16 kcs v2.2.4 delay sometime not working
Posted by: stanchiam - 10-30-2024, 04:21 AM - Forum: "KCS" v2 firmware system - Replies (1)

Hi,

I had set the output with type delay(30) for all output, sometimes some relay will not turn off after the 3 secs and will stay on.
You can try setup as above, then turn on one by one for all relays, some relay/output will stay on after 3 secs.
If you do it slowly, it is ok, if you turn on the output one by one fast example relay 1-16, some output will stay on

Please help to look into this. Thank you.

Print this item

Photo KC868-A16S and ds18b20
Posted by: gottlieb78 - 10-30-2024, 01:32 AM - Forum: KC868-A16S - Replies (1)

Hi

I have the KC868-A16S board and I have it setup up in ESPHome and linked to HA.

I´m having trouble connecting a one-wire ds18b20 temperature probe to the board and get a readout.

This is my yaml:

Code:
esphome:
  name: kincony
  friendly_name: Kincony
  platform: ESP32
  board: esp32dev

#esp32:
#  board: esp32dev
#  framework:
#    type: arduino

# Enable logging
logger:
  level: DEBUG
# Enable Home Assistant API
api:
  encryption:
    key:




 
# Example configuration entry for ESP32
i2c:
  sda: 4
  scl: 5
  scan: true
  id: bus_a


# Example configuration entry
ethernet:
  type: LAN8720
  mdc_pin: GPIO23
  mdio_pin: GPIO18
  clk_mode: GPIO17_OUT
  phy_addr: 0

  # Optional manual IP
#   manual_ip:
#    static_ip: 192.168.1.199
#    gateway: 192.168.1.1
#    subnet: 255.255.255.0 

# Example configuration entry

one_wire:
  - platform: gpio
    pin: GPIO14

# Individual sensors
sensor:
  - platform: dallas_temp
    #address:
    name: Temperature1
    update_interval: 5s

external_components:
  - source:
      type: git
      url: https://github.com/ssieb/esphome
      ref: onewire
    components: [ gpio ]
    refresh: 1min

# Example configuration entry
pcf8574:
  - id: 'pcf8574_hub_out_1'  # for output channel 1-8
    address: 0x24

  - id: 'pcf8574_hub_out_2'  # for output channel 9-16
    address: 0x25

  - id: 'pcf8574_hub_in_1'  # for input channel 1-8
    address: 0x22

  - id: 'pcf8574_hub_in_2'  # for input channel 9-16
    address: 0x23

# Individual outputs
switch:
  - platform: gpio
    name: "a16s-output1"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 0
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a16s-output2"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 1
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output3"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 2
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output4"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 3
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output5"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 4
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output6"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 5
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a16s-output7"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 6
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output8"
    pin:
      pcf8574: pcf8574_hub_out_1
      number: 7
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output9"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 0
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a16s-output10"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 1
      mode: OUTPUT
      inverted: true

  - platform: gpio
    name: "a16s-output11"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 2
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output12"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 3
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output13"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 4
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output14"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 5
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output15"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 6
      mode: OUTPUT
      inverted: true
     
  - platform: gpio
    name: "a16s-output16"
    pin:
      pcf8574: pcf8574_hub_out_2
      number: 7
      mode: OUTPUT
      inverted: true
     
binary_sensor:
  - platform: gpio
    name: "a16s-input1"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 0
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input2"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 1
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input3"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 2
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input4"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 3
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input5"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 4
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input6"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 5
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input7"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 6
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input8"
    pin:
      pcf8574: pcf8574_hub_in_1
      number: 7
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input9"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 0
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input10"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 1
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input11"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 2
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input12"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 3
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input13"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 4
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input14"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 5
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input15"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 6
      mode: INPUT
      inverted: true

  - platform: gpio
    name: "a16s-input16"
    pin:
      pcf8574: pcf8574_hub_in_2
      number: 7
      mode: INPUT
      inverted: true



Attached Files Thumbnail(s)
   
Print this item

  A128 and B32Pro
Posted by: kkabuu - 10-29-2024, 05:10 PM - Forum: KC868-A series and Uair Smart Controller - Replies (5)

Hello. I also ask for help.
I have 1 piece of A128 and B32Pro with AK.
I want to make one of these modules keep the output on as long as I press an input?
I also tried with (KCS firmware v2 and v1)
can i do this with these modules?

Print this item

  Issue with Device Connectivity – KC868-A4S Relay Controller
Posted by: Bhumijo - 10-29-2024, 06:14 AM - Forum: KC868-A4S - Replies (1)

So far, I've completed this part. Here’s the link, but it’s still not working: [Link] . Please help me for the solution . My device name is : 4 channel GSM relay esp32 board – KC868-A4S , link of the product :: https://www.kincony.com/4-channel-gsm-re...board.html

Print this item

  H32B Pro No integration possible in Home assistant
Posted by: kenny H - 10-29-2024, 02:11 AM - Forum: KC868-HxB series Smart Controller - Replies (5)

Hello

I'm struggling with the integration of the H32B Pro controller into Home assistant via MQTT on Ethernet.
So I followed all the steps like in your video  (https://www.youtube.com/watch?v=wMkQccSFY3A&t=406s )
But I cannot see any entity of the relay inputs/Outputs. 

Instead in the log files I get fault messages on the configuration code:

Logger: homeassistant.config
Source: config.py:1300

Invalid config for 'mqtt' at configuration.yaml, line 13: 'broker' is an invalid option for 'mqtt', check: mqtt->0->broker, please check the docs at https://www.home-assistant.io/integrations/mqtt Invalid config for 'mqtt' at configuration.yaml, line 13: 'password' is an invalid option for 'mqtt', check: mqtt->0->password, please check the docs at https://www.home-assistant.io/integrations/mqtt Invalid config for 'mqtt' at configuration.yaml, line 13: 'port' is an invalid option for 'mqtt', check: mqtt->0->port, please check the docs at https://www.home-assistant.io/integrations/mqtt Invalid config for 'mqtt' at configuration.yaml, line 13: 'username' is an invalid option for 'mqtt', check: mqtt->0->username, please check the docs at https://www.home-assistant.io/integrations/mqtt






In the file editor I added the configuration code with the Broker IP adress of the Raspberry pie 5 it's running on, and filled in the correct UID.

Here is what I filled in:

/homeassistant/configuration.yaml


mqtt:
  broker: 192.168.0.25
  port: 1883
  username: mqtt
  password: 123

  switch:
  - name: 'output-1'
    unique_id: output-1
    state_topic: 'relay32/582284c1f1ea0c0db02022b1/state'
    command_topic: 'relay32/582284c1f1ea0c0db02022b1/set'
    payload_on:  '{"relay1":{"on":1}}'
    payload_off:  '{"relay1":{"on":0}}'
    value_template: '{{ value_json.relay1.on }}'
    state_on: 1
    state_off: 0

....

I installed the Mosquitto broker and the MQTT integration I can't see what Im missing here
   
   
   
   

Print this item

  voice assistant supported languages list in home assistant
Posted by: admin - 10-27-2024, 11:39 PM - Forum: KinCony AS - No Replies

https://developers.home-assistant.io/doc...languages/

Print this item

  "KCS" v2.2.6 firmware BIN file download
Posted by: admin - 10-27-2024, 12:53 AM - Forum: "KCS" v2 firmware system - No Replies

Here is "KCS" firmware for KinCony KC868-A series (ESP32) board.
How to download and use, online guide: https://www.kincony.com/esp32-kcsv2-firmware.html
   
v2.2.6 improvement:
1. Missing coma after last input and before first output, example:
... "input15":{"value":false},"input16":{"value":false}"output1":{"value":false}, ...
2. Missing coma after last output and before first adc, example:
... "output15":{"value":false},"output16":{"value":true}"adc1":{"value":0}, ...
3. Missing coma after last adc and before first sensor, example:
... "adc4":{"value":0}"sensor1":{"temperature":-100.0,"humity":-100.0}, ...
4. Typo error on sensor humidity name, example:
... sensor1":{"temperature":-100.0,"humity":-100.0}, ...
instead of: ... sensor1":{"temperature":-100.0,"humidity":-100.0}, ...



Attached Files
.zip   KCS_KC868_A2_V2.2.6.zip (Size: 785.33 KB / Downloads: 447)
.zip   KCS_KC868_A4_V2.2.6.zip (Size: 772.44 KB / Downloads: 431)
.zip   KCS_KC868_A4S_V2.2.6.zip (Size: 795.91 KB / Downloads: 437)
.zip   KCS_KC868_A6_V2.2.6.zip (Size: 770.95 KB / Downloads: 445)
.zip   KCS_KC868_A8_V2.2.6.zip (Size: 778.91 KB / Downloads: 445)
.zip   KCS_KC868_A8M_V2.2.6.zip (Size: 795.43 KB / Downloads: 429)
.zip   KCS_KC868_A8S_V2.2.6.zip (Size: 796.92 KB / Downloads: 432)
.zip   KCS_KC868_A16_V2.2.6.zip (Size: 786.53 KB / Downloads: 571)
.zip   KCS_KC868_A16S_V2.2.6.zip (Size: 797.08 KB / Downloads: 425)
.zip   KCS_KC868_A32_V2.2.6.zip (Size: 776.66 KB / Downloads: 409)
.zip   KCS_KC868_A32M_V2.2.6.zip (Size: 794.87 KB / Downloads: 418)
.zip   KCS_KC868_A64_V2.2.6.zip (Size: 776.8 KB / Downloads: 427)
.zip   KCS_KC868_A128_V2.2.6.zip (Size: 776.65 KB / Downloads: 375)
.zip   KCS_KC868_AG_V2.2.6.zip (Size: 755.13 KB / Downloads: 391)
.zip   KCS_KC868_AI_V2.2.6.zip (Size: 779.15 KB / Downloads: 385)
.zip   KCS_KC868_AIO_V2.2.6.zip (Size: 796.54 KB / Downloads: 386)
.zip   KCS_KC868_AK_V2.2.6.zip (Size: 757.96 KB / Downloads: 456)
.zip   KCS_KC868_AM_V2.2.6.zip (Size: 772.38 KB / Downloads: 413)
.zip   KCS_KC868_AP_V2.2.6.zip (Size: 774.81 KB / Downloads: 381)
.zip   KCS_KC868_ASR_V2.2.6.zip (Size: 752.01 KB / Downloads: 378)
.zip   KCS_KC868_E16S_V2.2.6.zip (Size: 781.42 KB / Downloads: 414)
.zip   KCS_KC868_UAIR_V2.2.6.zip (Size: 758.67 KB / Downloads: 402)
Print this item

  KC8686-A2 + SIM7070 GSM
Posted by: fogamz - 10-26-2024, 06:25 PM - Forum: KC868-A2 - Replies (1)

KC868-A2 works well with SIM76XX  but I can't connect (no AT response) to the SIM7070.
I've noticed that PWRKEY pin is not conected with the ESP32, so no possibility to do correct reset.

Do you have experience with SIM7070?

Regards

Print this item