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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 6,364
» Latest member: mercyjo2034
» Forum threads: 2,844
» Forum posts: 15,029

Full Statistics

Online Users
There are currently 69 online users.
» 3 Member(s) | 43 Guest(s)
Amazonbot, Bing, Bytespider, Crawl, Go-http-client, Google, PetalBot, Semrush, WordPress/, Yandex, bot, owler, nielsek, sc00bs, sebfromgermany

Latest Threads
analog input resolution 3...
Forum: KC868-A16
Last Post: Yosemite
35 minutes ago
» Replies: 15
» Views: 384
[Arduino IDE demo source ...
Forum: KC868-A16
Last Post: wolli
1 hour ago
» Replies: 7
» Views: 2,574
KC868-HA-V21 serial port ...
Forum: KC868-HA /HA v2
Last Post: admin
3 hours ago
» Replies: 8
» Views: 92
A16: IFTTT Time based act...
Forum: KC868-A16
Last Post: admin
3 hours ago
» Replies: 16
» Views: 154
Using B16M for driving LE...
Forum: B16M
Last Post: admin
3 hours ago
» Replies: 3
» Views: 11
KC868-M30 - how to get it...
Forum: KC868-M16 / M1 / MB / M30
Last Post: msmrz
4 hours ago
» Replies: 4
» Views: 42
KC868-HA RS485 INPUT & OU...
Forum: KC868-HA /HA v2
Last Post: admin
Yesterday, 10:57 PM
» Replies: 29
» Views: 6,583
MQTT Connection issues
Forum: KC868-A16
Last Post: admin
Yesterday, 10:55 PM
» Replies: 1
» Views: 9
KCS868-A6 not found
Forum: KC868-A series and Uair Smart Controller
Last Post: admin
Yesterday, 10:50 PM
» Replies: 12
» Views: 55
Request for Assistance in...
Forum: DIY Project
Last Post: admin
Yesterday, 09:17 AM
» Replies: 1
» Views: 15

  esphome - devices connected without ha
Posted by: mod5 - 11-01-2024, 08:52 PM - Forum: Development - Replies (3)

Hi,

Is this possible to control GPIOS between two boards?
I have A32M and A64 and i want to do something like: input1(Board A) -> output1(Board B)
I want to use esphome (i need it for the project) and i dont want to use HA.
Can i do that?


P.S. 
Great work with your boards !

Print this item

Wink "KCS" v3.0.1 firmware for A32 Pro controller
Posted by: admin - 10-31-2024, 07:17 AM - Forum: "KCS" v2 firmware system - No Replies

v3.0.1 improvement:

1. fixed bug with ethernet STATIC IP mode.
2. support KinCony NEW Cloud server, remote control and monitor A32 Pro Controller by mobile phone and computer (PC & MAC) via internet by web browser.
3. support "auto discovery" for home assistant by MQTT with zero code config.
4. support Apple HomeKit directly to use.
   
   
firmware donwload:
.zip   KCS_A32PRO_V3.0.1.zip (Size: 999.11 KB / Downloads: 118)

Print this item

  wired temperature and humidity sensor pin define
Posted by: admin - 10-31-2024, 01:58 AM - Forum: Extender module - No Replies

   
RED: VCC 3.3--5v
BLACK: GND
YELLOW: humidity output
WHITE: temperature output

Print this item

  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